⚙️ Backend/JAVA

JAVA (자바) - Literal 리터럴

코너(Corner) 2020. 11. 3.
반응형

 

 

 

 

 

 

 

 

 

 


		char cv1 = 'A';
		char cv2 = '\n';
		char cv3 = '\t';

//		System.out.println(cv1+" "+cv2+"줄바꿈 "+cv3+"탭");
//		System.out.print("B");
//		class.field.method 
//		System.out.print("java\n"+cv1+" "+cv2+" "+cv3+"B\n");
//		System.out.printf("%c %c %cB %cc언어",cv1,cv2,cv3,cv2);
//		System.out.println();
//		System.out.println('A'+'B'+'\n'+'\t');

		int a = 10;
		int b = 20;
		String word = "hoon";
		String word2 = "Hi!";
		System.out.println(a + b + word + a + b);
		// 문자열 이후에는 숫자 변수들이 덧셈을 하지 않음.
		// 괄호로 우선순위를 두거나 문자열 이전에는 가능
		System.out.println(word2 + " " + word);

		boolean bool1 = true;
		boolean bool2 = false;
		
		bool1 = 100 < 110; // boolean 타입은 true false만 가능
		bool2 = true && true;
		System.out.println(bool1+" "+bool2);
		
		// 자료형 => 
//			기본형 : 정수형 - byte short int long , 
//			실수형 - float double
//			문자형 - char  논리형 - boolean
//			 참조형 : String(참조형이지만 기본형 형식의 문법 방식)
		// 리터럴 정수 ->
//			10 진수 : 123
//			8 진수 : 056
//			16진수 : 0xAF 
//		 	실수형 - 소숫점 3.14f 지수형 0.3E-7 
//			문자형 - 'a' ' ' JAVA - 2byte
//			논리형 - true false
//			문자열 - "aaa"

 


 

반응형

댓글