问答详情
源自:7-1 什么是 Java 中的封装

封装的话直接这样写不行吗?

package 封装;


public class Phone {

private float mem;

private float cpu;

private float screen;


public void setScreen(float newScreen){

screen=newScreen;

System.out.println("screen:"+screen);

}

}

public static void main(String[] args) {

// TODO Auto-generated method stub

Phone one=new Phone();

one.setScreen(6.0f);

}

提问者:Albert668 2017-01-05 21:09

个回答

  • luckyforever
    2017-01-05 22:32:08
    已采纳

    可以,把 main 函数放在 Phone类里面

  • 慕工程2701759
    2017-03-14 16:46:02

    懵比,为什么要把main函数放在Phone类里面

  • luckyforever
    2017-01-11 22:48:50

    可以,把 main 函数放在 Phone类里面

  • 小野_
    2017-01-05 21:34:58

    要把 main 函数放在 Phone类里面

  • 慕粉3896002
    2017-01-05 21:28:55

    这样可以