资 源 简 介
classshapemain.zip
//: c03:AutoInc.java
// Demonstrates the ++ and -- operators.
// From Thinking in Java, 3rd ed. (c) Bruce Eckel 2002
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
public class AutoInc {
public static void main(String[] args) {
int i = 1
System.out.println("i : " + i)
System.out.println("++i : " + ++i) // Pre-increment
System.out.println("i++ : " + i++) // Post-increment-classshapemain.zip// : c03 : AutoInc.java// Demonstrates the and-- operat ors.// From Thinking in Java, 3rd ed. (c) Bruce Eckel 2002// www.BruceEckel. com. See copyright notice in CopyRight.txt. pu blic class AutoInc (public static void main (St. ring args []) (int i = 1 System.out.println ( "i : "i) System.out.println (" i : "i)// Pre-increment System.out.println (" i : "i)// Post-increment