首页 > 其他 > 详细

集合综合练习<二>

时间:2017-02-26 08:00:21      阅读:173      评论:0      收藏:0      [点我收藏+]
package com.JiHeTotal;

import java.util.Map;

public class Student {

	int id;
	String name;
	Map<String, Double> scode;
    int totalSum;
	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 Map<String, Double> getScode() {
		return scode;
	}

	public void setScode(Map<String, Double> scode) {
		this.scode = scode;
	}

	public Student(Integer id, String name, Map<String, Double> scode) {
		super();
		this.id = id;
		this.name = name;
		this.scode = scode;
	}

}

  

集合综合练习<二>

原文:http://www.cnblogs.com/java-le/p/6443470.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!