728x90 비트 장기/JAVA33 8/8 자바 정리 보충 닷넷 후에는 자바 계속 돌리기개인프로젝트 //3번int rn = new Random().nextInt(100);System.out.println(rn); //4번int input = new Scanner(System.in).nextInt();System.out.println("숫자입력");System.out.println(input);에 추가 2018. 8. 8. 8/7 (8/4에 이어서 기본 예제 형식) 마지막으로 자바 함수종류 4가지랑 출력법3가지 12345678910111213141516171819202122232425262728package prj98;class Tiger { void func01() { } void func02(int a) { } int func03() { return 100; } int func04(int a) { return a; }}public class hello1 { public static void main(String[] args) { Tiger t1 = new Tiger(); //t1.func01(); //t1.func02(1); //사용방법 3가지중 1번 return이 무의미해진다. t1.func03(); //두번째 방법 굳이 num을 넣어줘서 int num = t.. 2018. 8. 7. 8/1,8/2 복습 배운거 정리하기. 2018. 8. 6. 8/3 복습(보충필요) 1234567891011121314151617class Tiger{ void func01() { System.out.println(3); }}public class Hello2 { public static void main(String[] args) { System.out.println(1); Tiger tiger = new Tiger(); tiger.func01(); System.out.println(2); } }Colored by Color Scriptercs http://commin.tistory.com/106 abstract 와 interface차이점 http://zbomoon.tistory.com/13//Thread 클래스를 사용하면 순서가 뒤죽박죽이다. 1234567891011121314151.. 2018. 8. 4. 이전 1 2 3 4 5 ··· 9 다음