Operators Confusable

Day12 Package; 

/ ** member variables and local variables * / 
public class the Test { 

	/ ** operator * / 

	public static void main (String [] args) { 
		int I =. 1; 
		I = +. 1; // I = I + 1 + = but irrespective of the type conversion 
		System.out.println (I); 
		byte = B. 1; 
		B = (byte) (B + I); // consider the type of conversion 
		System.out.println (B); 

		B + = i; // irrespective of the type conversion 
		System.out.println (B); 

		// ternary operator: determination condition? 1 Results: Results 2 
		System.out.println (?. 3> 2 "greater than": "less than"); 

		int COUNT = 0; 
		System.out.println ( "front COUNT:" + COUNT); 
		System.out.println ( "COUNT ++:" + COUNT ++); 
		System.out.println ( "COUNT in:" + COUNT); 
		System.out.println ( "++ COUNT:" + ++ COUNT); 
		System.out.

  

Guess you like

Origin www.cnblogs.com/yueluoshuxiang/p/11367039.html