标题:java程序中出现两个main函数时,为什么不执行第二个main函数?
取消只看楼主
langhuan
Rank: 2
等 级:论坛游民
帖 子:22
专家分:36
注 册:2011-7-17
结帖率:100%
已结贴  问题点数:5 回复次数:4 
java程序中出现两个main函数时,为什么不执行第二个main函数?
java程序中出现两个main函数时,为什么不执行第二个main函数?
大家帮忙看一看 谢谢!谢谢! 谢谢!
public class lang
{
    public static void main(String[]args)
    {
        employee[] staff;
        staff=new employee[3];
        staff[0]=new employee("langhuan",12890);
        staff[1]=new employee("langqi",34211);
        staff[2]=new employee("qinghong",232323);
        for(int i=0;i<staff.length;i++)
        {
            staff[i].setid();
            System.out.println(staff[i].getname()+" "+staff[i].getslary()+" "+staff[i].getID());
        }
        int n=employee.getnextid();
        System.out.println("next id:"+n);
    }
}
class employee
{
    public  employee(String name,double num)
    {
        name1=name;
        num1=num;
        id=0;
    }
    public String getname()
    {
        return name1;
    }
    public double getslary()
    {
        return num1;
    }
    public int getID()
    {
        return id;
    }
    public void setid()
    {
        nextid++;
        id=nextid;
    }
    public static int getnextid()
    {
        return nextid;
    }
    public static void main(String[]args)
    {
        employee e=new employee("laeif",231342);
        System.out.println(e.getname()+" "+e.getslary()+" "+e.getID());
    }
    private int id;
    private double num1;
    private String name1;
    private static int nextid=0;
}
搜索更多相关主题的帖子: java程序 employee public 
2011-07-26 11:55
langhuan
Rank: 2
等 级:论坛游民
帖 子:22
专家分:36
注 册:2011-7-17
得分:0 
回复 2楼 eight4
你在哪儿看到的?
2011-07-26 17:42
langhuan
Rank: 2
等 级:论坛游民
帖 子:22
专家分:36
注 册:2011-7-17
得分:0 
回复 2楼 eight4
你在哪儿看到的?
2011-07-26 17:42
langhuan
Rank: 2
等 级:论坛游民
帖 子:22
专家分:36
注 册:2011-7-17
得分:0 
回复 5楼 yong718100
谢谢!谢谢!我懂了。
2011-07-28 13:07
langhuan
Rank: 2
等 级:论坛游民
帖 子:22
专家分:36
注 册:2011-7-17
得分:0 
回复 5楼 yong718100
谢谢!谢谢!我懂了。
2011-07-28 13:07



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-346105-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.174168 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved