时代Java,与您同行!
关注微信公众号,关注前沿技术,微信搜索:nowjava或时代Java,也可点击这里扫码关注
时代Java
首页
集册
文章
实例
项目
快讯
时代+
手册
下载
Jar查找
登录
注册
Java 安全地使类型或方法能够对各种类型的对象进行操作
Java 安全地使类型或方法能够对各种类型的对象进行操作
欢马劈雪
工程师 (已认证)
原创分享签约作者
发表于
实例源码
订阅
321
查看 / 运行 实例源码
安全地使类型或方法能够对各种类型的对象进行操作
实例源码:
源代码:
执行
执行中...
/* 来自 *时代Java - N o w J a v a . c o m*/ import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; public class Main { public static void main(String[] args) { List
team = new ArrayList<>(); Player player1 = new Player("A", "AA", 5); Player player2 = new Player("B", "BB", 15); Player player3 = new Player("C", "CC", 1); Player player4 = new Player("D", "DD", 18); Player player5 = new Player("E", "EE", 7); team.add(player1); team.add(player2); team.add(player3); team.add(player4); team.add(player5); List objectList = new ArrayList();/* 来自 nowjava.com*/ Object obj1 = "none"; objectList.add(obj1); // Create a List that can be of type that is any superclass of Player List super Player> myTeam = objectList; for (Object p : myTeam) { System.out.println("Printing the objects..."); System.out.println(p.toString()); } Map
strMap = new HashMap<>(); strMap.put("first", "Josh"); strMap.put("last", "Juneau"); System.out.println(strMap.values()); } } class Player { private String firstName = null; private String lastName = null; private String position = null; private int status = -1; private int goals; public Player() { } public Player(String position, int status) { this.position = position; this.status = status; } public Player(String first, String last, int goals) { this.firstName = first; this.lastName = last; this.goals = goals; } public Player(String position, int status, String first, String last) { this.position = position; this.status = status; this.firstName = first; this.lastName = last; } public String playerString() { return getFirstName() + " " + getLastName() + " - " + getPosition(); } /** * @return the firstName */ public String getFirstName() { return firstName; } /** * @param firstName * the firstName to set */ public void setFirstName(String firstName) { this.firstName = firstName; } /** * @return the lastName */ public String getLastName() { return lastName; } /** * @param lastName * the lastName to set */ public void setLastName(String lastName) { this.lastName = lastName; } /** * @return the position */ public String getPosition() { return position; } /** * @param position * the position to set */ public void setPosition(String position) { /**代码未完, 请加载全部代码(NowJava.com).**/
编辑/阅读全部代码
执行结果:
Printing the objects...
none
[Juneau, Josh]
本文系作者在时代Java发表,未经许可,不得转载。如有侵权,请联系nowjava@qq.com删除。
编辑于
2020-03-26 09:23:27
2020-03-26 09:23:27
分享
分享文章到朋友圈
分享文章到 QQ
分享文章到微博
复制文章链接到剪贴板
扫描二维码
关注时代Java
实例源码
实例源码
订阅
订阅专栏
Java 判断文件是否为文本文件及获取文件编码格式的方法实例
bootstrap 实例演示下拉菜单(Dropdown)插件用法。
HashSet、LinkedHashSet、TreeSet类存储元素的自动排序规则实例测试
html css 对于 body和h1设置的实例源码
Java 获取在线网页的源代码
Java HashSet添加、迭代输出字符串的完整示例代码
Java 随机整数数组
html css 设置背景图片定位并且不平铺
扫描二维码
关注时代Java
返回顶部