Notice
Recent Posts
Recent Comments
Link
«   2024/07   »
1 2 3 4 5 6
7 8 9 10 11 12 13
14 15 16 17 18 19 20
21 22 23 24 25 26 27
28 29 30 31
Tags
more
Archives
Today
Total
관리 메뉴

WON.dev

chapter01 : static sample 본문

JAVA/chapter10_static_final

chapter01 : static sample

GAWON 2023. 5. 26. 18:12
package org.joonzis.ex;

public class Ex01_StaticSample {

	static final double PI = Math.PI;
	
	public static void main(String[] args) {
		
		System.out.println();
		
		System.out.println(Math.PI);
		PI = 123;
		
	}
}

'JAVA > chapter10_static_final' 카테고리의 다른 글

chapter03 : Team / TeamMain  (0) 2023.05.26
chapter02 : Man / ManMain  (0) 2023.05.26