๋ณธ๋ฌธ ๋ฐ”๋กœ๊ฐ€๊ธฐ
  • What would life be If we had no courage to attemp anything?
Language/Java

[์ƒํ™œ์ฝ”๋”ฉ] Java - ๋ณ€์ˆ˜

by DevIseo 2022. 4. 14.

๋ณ€์ˆ˜

๊ฐ•์˜ 1

public class Variable {

	public static void main(String[] args) {
		int a = 1; //Number -> integer
		System.out.println(a);
		
		//int b = 1.1; ์ •์ˆ˜๊ฐ€ ์•„๋‹ˆ๋ผ์„œ ๋ถˆ๊ฐ€! 1.1์€ real number ->double
		double b = 1.1;
		System.out.println(b);
		
		//int c = "Hello World"; ๋ถˆ๊ฐ€!
		String c = "Hello World"; // string
		System.out.println(c);
	
	}

}

๊ฐ•์˜2

public class Letter {
	public static void main(String[] args) {
		String name = "Iseo";
		System.out.println("Hello, "+name+" ... "+name+" ... Iseo ... bye");
		
		double VAT = 10.0;
		System.out.println(VAT); //double ์‹ค์ˆ˜
		
	}
}

 

๊ฐ•์˜3 - CASTING

public class Casting {

	public static void main(String[] args) {
		double a = 1.1;
		double b = 1;
		double b2 = (double) 1;
		System.out.println(b); //1์ด ์•„๋‹Œ 1.0์œผ๋กœ converting
		
		//int c = 1.1; //์‹คํ–‰ ์•ˆ๋จ! ์˜ค๋ฅ˜๋‚จ
		double d = 1.1;
		int e = (int) 1.1; //๊ฐ•์ œ๋กœ int๋กœ ๋ณ€ํ™˜
		System.out.println(e);
		
		//1 to String
		String f = Integer.toString(1);
		System.out.println(f.getClass()); // f์˜ classํ™•์ธํ•˜๊ธฐ
	}

}

๋Œ“๊ธ€