일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- currentTimeMillis
- 티스토리초대
- Path Alias
- visual studio code cli
- webstorm
- eslint-import-resolver-typescript
- 프레시업 #풀무원 #하루한병 #건강만들기 #풀무원 녹즙
- 티스토리 초대장
- GitHub 미러링
- 실행시간 측정
- 티스토리 초대장/ 티스토리초대
- 유니옥션
- 프리티어
- 초대장
- GitLab미러링
- GitHub Mirroring
- gitlab 연동
- Emmet
- react native #gradle
- settings sync
- visual studio code
- 음료같은녹즙
- React Native
- code 설치
- code .
- 네이버 클라우드 플랫폼
- GitLab Mirroring
- 니돈내먹
- code 세팅
- '티스토리 초대장/ 티스토리초대'
- Today
- Total
목록분류 전체보기 (105)
방치하기
class Parent { int a=10; public void parentPrn(){ System.out.println("슈퍼클래스 프린트 메소드 "); } } class Son extends Parent { int a=12; public void parentPrn(){ System.out.println("오버라이딩 서브클래스 프린트 메소드 "); } public void sonPrn(){ System.out.println("서브클래스 프린트 메소드 "); } } class Re { public static void main (String [] args) { Son s= new Son(); s.parentPrn(); Parent p=new Son(); p.parentPrn();// 오버라이딩 메소드는..
class ET1 { String model; } class ET2 extends ET1 { int a ; } class ET { public static void main (String [] args){ if (new ET2() instanceof ET1) { System.out.println("1상속 받았습니다 "); } if (new ET1() instanceof ET2) { System.out.println("2상속 받았습니다 "); } } }
class Shape { String name; public Shape(String name){ this.name = name; } public void draw(){ System.out.println(name +"을 그립니다."); } } class Circle extends Shape { public Circle(String name){ super(name); } public void paint(String color){ System.out.println(color + "입니다 "); } } class Triangle extends Shape { public Triangle(String name){ super(name); } } /* public void make(Circle cc){ cc.draw(..
1. 자바에서 메소드가 뭐에요?! C언어에서 C언어는 함수의 집합체라고 한다. 하지만 자바에서는 함수라고 하지않고 메소드 라고 부른다. 필자는 메소드와 함수는 동일한 개념이라고 생각한다 . 아무리 쉬운 입문서에서도 왜 int main (void) {생략。。。} 이게 왜 함수인지를 알려주는 친절한 서적을 접하지 못했다. 그러다가 문득 필자는 수학에 함수와 비교를 해보게 되었고,수학적인 함수와 모양이 같다는 것을 알았다 .인제 그부분에 대해서 설명을 할려고한다.C를 기준으로 설명을 하겠다. 함수 y=f(x) 이게 함수라는 사실은 아마 다 알고 있으실 것이다. 이게 함수인데 . 프로그래밍에서의 함수 int main (void) {생략。。。} 와 아무리 봐도 다른 모양이라고 생각이 들것이다. 하지만 (1)int..
class Point2D { protected int x=10; protected int y=20; public Point2D(int xx,int yy) { x=xx ; y=yy; } } class Point3D extends Point2D{ protected int z=30; public void print(){ System.out.println(x+" "+" "+y+" "+z); } public Point3D(){ super(123,456); System.out.println("서브 클래스 생성자 호출"); } public Point3D(int xx,int yy,int zz) { super(xx,yy); x=xx ; y=yy; z=zz; } } class Noname1 { public static v..
class Person { int age; boolean a; Person(int age,boolean a) { this.age=age; this.a=a; } public boolean IsMember(){ if(a) { return a; } else { return a; } } public int getAge(){ return this.age; } public int getMoney(){ if (age4 && age18 && age
import java.util.*; import java.io.*; class Student { private String name; private int major []=new int [3]; private int sum; private double avg=0; public void setName(){ Scanner scan=new Scanner(System.in); System.out.println("학생의 이름을 입력해주세요"); this.name =scan.next(); } public void setMajor(){ for(int i=0;i
import java.util.*; import java.io.*; class Student { private String name; private int major []=new int [3]; private int sum; private double avg=0; public void setName(){ Scanner scan=new Scanner(System.in); System.out.println("학생의 이름을 입력해주세요"); this.name =scan.next(); } public void setMajor(){ for(int i=0;i
import java.util.*; class height{ public static void main(String [] arg) { Scanner scan= new Scanner(System.in); System.out.printf("당신의 키를 입력해주세요\n"); int height=scan.nextInt(); double normal_weight=(double)((height-100)*0.9); System.out.printf("당신의 키에 표준 체중은 : %4.2f kg 입니다" , normal_weight); System.out.printf("당신의 몸무게를 입력해주세요\n"); double weight=scan.nextDouble(); if (weight==normal_weight) { Sy..
import java.util.*; import java.util.*; import java.io.*; class 숫자놀이{ public static void main(String [] arg)throws Exception { //int now=(int)(Math.random()*50)+1; 메스 랜덤 이용 int count=0; Random random =new Random(System.currentTimeMillis()); //유틸 안에 Random은 그냥도 되지만 지금처럼 시간을 불러와서 난수 생성도 가능 int now =random.nextInt(50); Scanner scan= new Scanner(System.in); System.out.println("정답입니다"+now); while (tr..