본문 바로가기

Javascript

객체 , 클래스 // object, class

 

 

See the Pen zYGRKxr by MoonSeonhyeon (@Seonhyeon) on CodePen.

아래에 코드있어요!

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package myapp;
 
public class Ex1 {
 
    public static void main(String[] args) {
        // 클래스 만들기 -> 클래스 생성 ->클래스 사용 (변수, 메소드)
        //SUN에서 잘 만들어놓은 클래스들 갖다 사용. 아래에는 String 클래스(SUN 회사에서 제공) 생성
        //레퍼런스 변수 : s는 만들어진 객체를 가르키고 있는 변수
        String s = new String("하하하하하하하하하"); //String은 문자열을 객체화한 클래스
        //레퍼런스 변수.변수 or 레퍼런스 변수.메소드
        int len = s.length();
        System.out.println(len);
        //반지름이 5인 원의 넓이를 구하시오.
        double d = 5*5*Math.PI;
        System.out.println(d);
        int a= Math.abs(-10);
        System.out.println(a);
    }
 
}
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs