码迷,mamicode.com
首页 > 其他好文 > 详细

集合综合练习<二>

时间:2017-02-26 08:00:21      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:综合   set   util   pac   java   get   ret   com   pre   

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;
	}

}

  

集合综合练习<二>

标签:综合   set   util   pac   java   get   ret   com   pre   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!