本帖最后由 李凤鸣 于 2012-12-21 02:47 编辑
- <p>class Person3
- {
- private String name="zhang";
- int id=5;
- void function()
- {
- System.out.println(name);
- }
-
-
-
- }</p><p>class Person4
- {
- Person3 person3=new Person3();
- <font style="background-color: silver;" color="red">person3.function();//这么写不对</font>
- }</p><p>public class Lianxi {
- public static void main(String[] args) {
- Person3 person3=new Person3();
- person3.function();
- }</p><p>}
- </p><p> </p>
复制代码 我想在类Person4里面访问Person3的方法function,应该怎么写呢
我写的方法在主函数可以,可在Person4类里面就不行了
|