您的位置:首页 > 其它

第2章练习题9

2016-02-04 22:46 197 查看
版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/baidu_27151199/article/details/50636617 //: object/Documentation1.java
/**
 *  A class comment
 *  @author Camille-HY
 * 展示java的自动包装功能
 */
public class Documentation1 {
public static void main(String ar[]) {
  int a = 89;
  Integer k = a;
  System.out.println(k);
}
}
/*Output:
 * 89
 */
///:~ 阅读更多
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: