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

[์ƒํ™œ์ฝ”๋”ฉ] Java - ์ œ์–ด๋ฌธ (boolean)

by DevIseo 2022. 4. 25.
public class BooleanApp {

	public static void main(String[] args) {
		System.out.println("One");
		System.out.println(1);
		System.out.println(true);
		System.out.println(false);
		
		String foo ="Hello world";
		//String true = "hello world"; reversed word
		
		System.out.println(foo.contains("world")); //true
		System.out.println(foo.contains("iseo")); //false
	}

}
contains ๋ฉ”์„œ๋“œ๋ฅผ ์ด์šฉํ•ด  ๋ฌธ์ž์—ด ์•ˆ์—  " " ์•ˆ์˜ ๋ฌธ์ž์—ด์ด ๋“ค์–ด๊ฐ€ ์žˆ๋Š”์ง€ ํ™•์ธ ๊ฐ€๋Šฅ!

 

๋Œ“๊ธ€