在类中确定变量

时间:2013-10-31 01:03:11

标签: java class variables scope

在方法中,我们可以创建一个范围,以限制对某些变量的访问。

void func() {
    {
        int num = 3;
    }
    // num is not accessible here
}

在课堂上,我们如何创建范围(或类似结构),以便某些字段只能通过某些方法访问?

class MyClass {
    private String myHeart = "pure";
    void method_friendly {
        // should able to access myHeart
    }

    // ---------- methods under this line should not access myHeart

    void method_evil {
        // please don't touch myHeart
    }
}

2 个答案:

答案 0 :(得分:0)

您可以做的一件事是使用您希望一切能够使用的方法创建一个基类,然后创建能够使用这些和一些特殊方法的派生类。

答案 1 :(得分:0)

您可以编写一个抽象类并声明您认为重要的方法,并且应该能够访问某些字段。您可以声明变量private。然后您可以编写任何子类,如果没有mutatter方法,这些类将无法更改原始字段。