为什么我的增强型for循环报错啊!list也是的。

为什么我的增强型for循环报错啊!list也是的。

正在回答 回答被采纳积分+1

登陆购买课程后可参与讨论,去登陆

4回答
THappy 2017-12-28 09:34:06

看你贴的图中还有StudentTest类,这个类中也有错误提示,把这个的代码也贴出来吧,以便更好帮你解答~

提问者 郭恒1996 2017-12-27 21:07:24

还有一个问题,我的电脑不能自己写入toString 方法!!!

提问者 郭恒1996 2017-12-27 21:04:42

package jihe;

public class Employee {
    private int id;
    private String name;
    private double salary;
    public Employee(int id, String name, double salary) {
        super();
        this.id = id;
        this.name = name;
        this.salary = salary;
    }
    public int getId() {
        return id;
    }
    public void setId(int id) {
        this.id = id;
    }
    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public double getSalary() {
        return salary;
    }
    public void setSalary(double salary) {
        this.salary = salary;
    }
    public String toString() {
        return name+"    "+salary;
    }

}

===============================================================================

package jihe;

import java.util.ArrayList;
import java.util.List;

public class LIST {

    public static void main(String[] args) {
        List<Employee> list=new ArrayList<Employee>();
        Employee one=new Employee(1,"张三",5000);
        Employee two=new Employee(2,"李四",5500);
        Employee three=new Employee(3,"赵六",4000);
        list.add(one);
        list.add(two);
        list.add(three);
        System.out.println("员工姓名"+"    "+"员工薪资");
        for(int i=0;i<list.size();i++) {
            System.out.println(list.get(i));
        }
        for(Employee stu: list);{
            System.out.println(stu);
        }
        int a[]= {1,2,3,4,5,};
        for(int b:a) {
            System.out.print(b);
        }
    }

}

为什么用增强型for循环输出stu的时候报错!



没有马甲线的安琪拉 2017-12-27 20:48:25

看你这图也醉了,还有斜着的……把代码贴出来

  • 提问者 郭恒1996 #1
    我没用泛型,用增强for循环的时候报错,用了就没错了,所以必须用泛型了才可以增强for循环吗?还有为啥那上面的代码报错?list不可以用增强for循环吗?
    2017-12-27 21:18:18
问题已解决,确定采纳
还有疑问,暂不采纳

恭喜解决一个难题,获得1积分~

来为老师/同学的回答评分吧

0 星
请稍等 ...
意见反馈 帮助中心 APP下载
官方微信

在线咨询

领取优惠

免费试听

领取大纲

扫描二维码,添加
你的专属老师