일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #binary
- html video
- html charset
- #android activity
- #1차원배열
- hyperledger transaction
- docker example
- #다차원포인터
- 토큰경제
- #C++ 연산자함수오버로딩
- #C++ has~a
- #CallByAddress
- html5 new tag
- #3차원배열
- html code
- #성적관리프로그램
- #bubbleSort
- relative path
- html youtube
- html multimedia
- html object
- #2차원배열
- html id
- #자바상속#자바이즈어#is~a
- #JAVASCRIPT
- border-box
- git flow
- 하이퍼레저패브릭
- html plug-in
- mac terminal command
- Today
- Total
목록Java (52)
A sentimental robot
public class Day2 implements Inter1.Inter2{ public static void main(String[] args) { } @Override public void f2() { // TODO Auto-generated method stub } } public interface Inter1 { void f1(); interface Inter2 { void f2(); } interface Inter3{ void f3(); } } 인터페이스 안에 클래스를 상속받기 public class Day2 extends Inter1.Banana{ public static void main(String[] args) { Banana b=new Banana(); b.f1(); } } publi..
제네릭이란, 클래스 내부에서 사용할 데이터 타입을 외부에서 지정하는 기법을 말한다. 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..
import java.util.TreeMap; import java.util.Iterator; import java.util.Scanner; import java.util.*; public class Test02 { public static void main(String[] args) { Pro tt = new Pro(); Scanner sc = new Scanner(System.in); do { System.out.println("====성적처리관리프로그램입니다.===="); System.out.println("1.성적입력\n2.성적 전체 출력\n3.학번 검색 출력\n종료하시려면 -1을 입력"); int i; i = sc.nextInt(); if (i == -1) { break; } switch (i)..
import java.util.TreeMap; public class CTreeMap { public static void main(String[] args) { TreeMap tm = new TreeMap(); tm.put("C", 100); tm.put("A", 90); tm.put("B", 40); System.out.println(tm); } } TreeMap 정렬 출력 import java.util.Iterator; import java.util.TreeMap; public class CTreeMap2 { public static void main(String[] args) { TreeMap tm = new TreeMap(); for (int i = 25; i >= 0 ; i--) { char ..