本帖最后由 abc张强8 于 2014-7-1 23:02 编辑
- public class Secret {
-
- int giveSecret() {
- return 42
- }
-
- public static void main(String[] args) {
-
- //Secret life = new Secret();
- //int theSecret= life.giveSecret();
-
- System.out.println("你的密码是:"+giveSecret());
- }
- }上面这个程序有一处小错误,如果在int giveSecret()前面加上static就会正确,可是我不想加static,请教,怎样改才能正确啊
复制代码 |