일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- git flow
- #CallByAddress
- html id
- html charset
- #android activity
- html code
- #bubbleSort
- #2차원배열
- #자바상속#자바이즈어#is~a
- #3차원배열
- #JAVASCRIPT
- html object
- border-box
- #1차원배열
- #C++ 연산자함수오버로딩
- html video
- html5 new tag
- #C++ has~a
- docker example
- html multimedia
- relative path
- #성적관리프로그램
- #다차원포인터
- html plug-in
- html youtube
- 토큰경제
- 하이퍼레저패브릭
- hyperledger transaction
- #binary
- mac terminal command
- Today
- Total
A sentimental robot
제네릭이란, 클래스 내부에서 사용할 데이터 타입을 외부에서 지정하는 기법을 말한다. import static java.lang.System.out; public class InnerClass { //안에 컴파일 시 명시할 타입 T[] v; public void set(T[] n) { v = n; } public void print() { for (T s : v) out.println(s); } public static void main(String args[]) { InnerClass in = new InnerClass(); // String 타입으로 명시 String[] ss = { "dho" }; in.set(ss); in.print(); } } import java.util.*; import sta..
package day1; import java.util.Scanner; public class Main { private static Manager ma; private static UserMain u; public Main() { ma = new Manager(); u = new UserMain(); } public static void main(String arg[]) { Scanner sc = new Scanner(System.in); int n01 = 0; char n = 0; boolean y; Main main = new Main(); do { System.out.println("----------------------------"); System.out.println("1.관리자 모드 2.사..
public class Day1 { public static void main(String[] args) { int[][] arr; arr = new int[2][]; arr[0] = new int[2]; arr[1] = new int[4]; for (int i = 0; i < arr.length; i++) { for (int j = 0; j < arr[i].length; j++) { arr[i][j] = i + j; } } for (int i = 0; i < arr.length; i++) { for (int j = 0; j < arr[i].length; j++) { System.out.println(arr[i][j]); } } } }
import java.net.*; public class CC { public static void main(String []args) throws UnknownHostException{ //로컬 호스트를 이용한 InetAddress 객체 생성 InetAddress a=InetAddress.getLocalHost(); //호스트 이름을 문자열로 반환 System.out.printf("호스트 이름: %s %n", a.getHostName()); //호스트에 대한 IP주소 반환 System.out.printf("호스트 IP주소 :%s %n", a.getHostAddress()); //java.sun.com에 대응하는 InetAddress 객체 반환 a=InetAddress.getByName("java.sun..