الرجوع
تسجيل الدخول
أنت تتصفح نسخة مؤرشفة من الموقع اضغط للانتقال إلى الموقع الجديد بكامل المزايا

Which of the following statements will create a reference, myCircle, to a Circle object with a radius of 4.5?

public class Circle {
    private double radius;
    public Circle(double radius) {
        this.radius = radius;
    }
}