posts - 2,  comments - 0,  views - 763
< 2025年1月 >
29 30 31 1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31 1
2 3 4 5 6 7 8
复制代码

1
package ttt; 2 3 public class Testttt { 4 public static void main() { 5 Person p =new Person(); 6 p.name="lucy"; 7 p.age=12; 8 p.sex=1; 9 p.study(); 10 int a = p.addAge(2); 11 12 } 13 14 }
复制代码
复制代码
 1 package ttt;
 2 
 3 public class Person {
 4 
 5         public String name;
 6         public int age;
 7         public int sex;
 8 
 9         public void study() {
10             System.out.println("studing");
11         }
12         
13         public void showAge() {
14             System.out.println(age);
15         }
16         
17         public int addAge(int i) {
18             age+=i;
19             return age;
20         }
21 
22 }
复制代码

 

在eclipse中运行java时没有java Application 通常是因为 定义的main方法没有写对 缺少了 ()中的内容。

改正:将Testttt的main方法的参数写完整即可。

1
public static void main(String args[]) {

  

posted on   laypeach  阅读(589)  评论(0编辑  收藏  举报
编辑推荐:
· 现代计算机视觉入门之:什么是图片特征编码
· .NET 9 new features-C#13新的锁类型和语义
· Linux系统下SQL Server数据库镜像配置全流程详解
· 现代计算机视觉入门之:什么是视频
· 你所不知道的 C/C++ 宏知识
阅读排行:
· 不到万不得已,千万不要去外包
· C# WebAPI 插件热插拔(持续更新中)
· 会议真的有必要吗?我们产品开发9年了,但从来没开过会
· 【译】我们最喜欢的2024年的 Visual Studio 新功能
· 如何打造一个高并发系统?
点击右上角即可分享
微信分享提示