热心西装

文章
4
资源
0
加入时间
2年10月21天

java int integer_浅谈java中int和Integer的区别

第一,简介int是java的8个原始数据类型(boolean, byte, short, char, int, float, double, long)之一。java虽然号称一切皆是对象,但原始数据类型除外。integer是int对应的包装类,它有一个int类型的字段存储数据,并提供了数学运算,int和字符串之间转换等基本操作。在java5中,引入了自动装箱和自动拆箱功能,并新增了静态工厂方法va...

A - Cover it!

原题链接:http://codeforces.com/problemset/problem/1176/EYou are given an undirected unweighted connected graph consisting ofnnvertices andmmedges. It is guaranteed that there are no self-loops or mu...