kevinliu1937 2014-10-25 08:46
浏览 3124

eclipse中,定义类Employee时,错误提示是“已定义类型Employee”,该如何进行解决?

public class ParamTest
{
public static void main(String[] args)
{
System.out.println("tripleValue testing");
double percent=10;
System.out.println("Before:percent="+percent);
tripleValue(percent);
System.out.println("After:percent="+percent);

    System.out.println("/nTesting tripleSalary:");
    Employee harry=new Employee("Harry",50000);
    System.out.println("Before:salary="+harry.getSalary());
    tripleSalary(harry);
    System.out.println("After:salary="+harry.getSalary());

    System.out.println("/nTesting swap:");
    Employee a=new Employee("Alice",10000);
    Employee b=new Employee("Bob",30000);
    System.out.println("Before: a="+a.getName());
    System.out.println("Before: b="+b.getName());
    swap(a,b);
    System.out.println("After: a="+a.getName());
    System.out.println("After: b="+b.getName());
}
public static void tripleValue(double x)
{
    x=3*x;
    System.out.println("End of method:x="+x);
}

public static void tripleSalary(Employee x)
{
    x.raiseSalary(200);
    System.out.println("End of mathod:salary="+x.getSalary());
}

public static void swap(Employee x,Employee y)
{
    Employee temp=x;
    x=y;
    y=temp;
    System.out.println("End of the mathod :x="+x.getName());
    System.out.println("End of the mathod :y="+y.getName());
}

}

class Employee
{

public Employee(String n,double s)
{
name=n;
salary=s;
}

public String getName()
{
    return name;
}
public double getSalary()
{
    return salary;
}

public void raiseSalary(double bypercent)
{
    double raise=salary*bypercent/100;
    salary+=raise;
}
private String name;
private double salary;

} strong text

  • 写回答

0条回答

    报告相同问题?

    悬赏问题

    • ¥15 如何在scanpy上做差异基因和通路富集?
    • ¥20 关于#硬件工程#的问题,请各位专家解答!
    • ¥15 关于#matlab#的问题:期望的系统闭环传递函数为G(s)=wn^2/s^2+2¢wn+wn^2阻尼系数¢=0.707,使系统具有较小的超调量
    • ¥15 FLUENT如何实现在堆积颗粒的上表面加载高斯热源
    • ¥30 截图中的mathematics程序转换成matlab
    • ¥15 动力学代码报错,维度不匹配
    • ¥15 Power query添加列问题
    • ¥50 Kubernetes&Fission&Eleasticsearch
    • ¥15 報錯:Person is not mapped,如何解決?
    • ¥15 c++头文件不能识别CDialog