[JAVA] 자릿수 만큼 0으로 채우기.. 예를 들어.. 3자리수를 표현한다고 하면, 001,002,010 뭐 이런식으로 표현하고 싶을때가 있다. (일련번호등을 표시할때 ) 아래와 같이 하면 쉽게 표현할 수 있다. int serial = 3; String suffix = String.format(“%03d”, serial); System.out.println(suffix); 결과는 “003” Share this:Click to share on Twitter (Opens in new window)Click to share on Facebook (Opens in new window) Related Posted on 2014-08-18 10:23 AM by andrew Comment 📂This entry was posted in JAVA 참고를 위한 저장물
2014-07-21 andrew javascript ==, ===의 의미0==false// true 0===false// false, because they are of a different type 1=="1"// true, auto type coe...
2014-11-26 andrew [펌][mfc] Dialog창에서 Enter누르면 창이 닫히는 증상 개선 하자..원인은 Dailog에서 Enter나 ESC가 눌리면 Event를 찾다가 구현이 없으면 부모인 CDialog의 SetDefID 함수를 부르는데 여기에 IDOK가 구현 되어 있어서 그...