inblog logo
|
hyeonjeong-jang-0302
    JAVA

    this 참조변수

    Dec 21, 2023
    this 참조변수
    package ex04; class CircleEx04 { int radius; public CircleEx04(int radius) { this.radius = radius; } public CircleEx04() { this(0); } double getArea() { return 3.14 * radius * radius; } } public class CircleEx04Test { public static void main(String[] args) { CircleEx04 cArea = new CircleEx04(3); System.out.println(cArea.getArea()); } }
    Share article

    hyeonjeong-jang-0302

    RSS·Powered by Inblog