- 浏览: 2422 次
- 性别:
- 来自: 上海
最新评论
文章列表
public Set<Integer> getLoterry2()
{
Set<Integer> set = new HashSet<Integer>();
for(int i = 0 ;;i++)
{
int temp = (int)(Math.random()*35 + 1);
if(set.size() == 7)
{
break;
}
set.add(temp);
}
return set;
}
public class TestReverse {
public static void main(String[] args){
int[] array = {1,2,3,4,5,6,7,8,9,10};
int[] result = TestReverse.reverse(array);
for(int i = 0 ; i < result.length;i++){
System.out.print(result[i]+" ");
}
}
public static final int[] reverse(int[] ...
String的基础概念代码
- 博客分类:
- java基础
package string;
public class BasicConcept {
/*
*
* 在Java源代码中的每一个字面值字符串,比如下面sayHello方法里面的"Hello world"
* 都会在编译成class文件阶段,形成标志号为8(CONSTANT_String_info)的常量表(这个时候常量表还不是常量池),
* 接着当JVM加载 class文件的时候,会为对应的常量池建立一个内存数据结构,并存放在方法区中。
* 同时JVM会自动为CONSTANT_String_info常量表中的字符串常量字面值在堆中创建新的String ...