如何在Java中声明和初始化数组?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何在Java中声明和初始化数组?相关的知识,希望对你有一定的参考价值。
如何在Java中声明和初始化数组?
您可以使用数组声明或数组文字(但只有在声明并立即影响变量时,才能使用数组文字重新分配数组)。
对于原始类型:
int[] myIntArray = new int[3];
int[] myIntArray = {1, 2, 3};
int[] myIntArray = new int[]{1, 2, 3};
对于类,例如String
,它是相同的:
String[] myStringArray = new String[3];
String[] myStringArray = {"a", "b", "c"};
String[] myStringArray = new String[]{"a", "b", "c"};
当您首先声明数组然后初始化它时,第三种初始化方法很有用。演员是必要的。
String[] myStringArray;
myStringArray = new String[]{"a", "b", "c"};
以原始类型int
为例。声明和int
数组有几种方法:
int[] i = new int[capacity];
int[] i = new int[] {value1, value2, value3, etc};
int[] i = {value1, value2, value3, etc};
在所有这些中,您可以使用int i[]
而不是int[] i
。
通过反射,您可以使用(Type[]) Array.newInstance(Type.class, capacity);
请注意,在方法参数中,...
表示variable arguments
。基本上,任何数量的参数都可以。使用代码更容易解释:
public static void varargs(int fixed1, String fixed2, int... varargs) {...}
...
varargs(0, "", 100); // fixed1 = 0, fixed2 = "", varargs = {100}
varargs(0, "", 100, 200); // fixed1 = 0, fixed2 = "", varargs = {100, 200};
在方法内部,varargs
被视为正常的int[]
。 Type...
只能在方法参数中使用,因此int... i = new int[] {}
不会编译。
请注意,当将int[]
传递给方法(或任何其他Type[]
)时,您无法使用第三种方式。在声明int[] i = *{a, b, c, d, etc}*
中,编译器假定{...}
表示int[]
。但那是因为你要声明一个变量。将数组传递给方法时,声明必须是new Type[capacity]
或new Type[] {...}
。
Multidimensional Arrays
多维数组很难处理。实质上,2D数组是一个数组数组。 int[][]
意味着一系列int[]
s。关键是如果int[][]
被声明为int[x][y]
,则最大指数为i[x-1][y-1]
。基本上,矩形int[3][5]
是:
[0, 0] [1, 0] [2, 0]
[0, 1] [1, 1] [2, 1]
[0, 2] [1, 2] [2, 2]
[0, 3] [1, 3] [2, 3]
[0, 4] [1, 4] [2, 4]
如果你想使用反射创建数组,那么你可以这样做:
int size = 3;
int[] intArray = (int[]) Array.newInstance(int.class, size );
声明一组对象引用:
class Animal {}
class Horse extends Animal {
public static void main(String[] args) {
/*
* Array of Animal can hold Animal and Horse (all subtypes of Animal allowed)
*/
Animal[] a1 = new Animal[10];
a1[0] = new Animal();
a1[1] = new Horse();
/*
* Array of Animal can hold Animal and Horse and all subtype of Horse
*/
Animal[] a2 = new Horse[10];
a2[0] = new Animal();
a2[1] = new Horse();
/*
* Array of Horse can hold only Horse and its subtype (if any) and not
allowed supertype of Horse nor other subtype of Animal.
*/
Horse[] h1 = new Horse[10];
h1[0] = new Animal(); // Not allowed
h1[1] = new Horse();
/*
* This can not be declared.
*/
Horse[] h2 = new Animal[10]; // Not allowed
}
}
在Java 9中
使用不同的IntStream.iterate
和IntStream.takeWhile
方法:
int[] a = IntStream.iterate(10, x -> x <= 100, x -> x + 10).toArray();
Out: [10, 20, 30, 40, 50, 60, 70, 80, 90, 100]
int[] b = IntStream.iterate(0, x -> x + 1).takeWhile(x -> x < 10).toArray();
Out: [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
在Java 10中
使用Local Variable Type Inference:
var letters = new String[]{"A", "B", "C"};
数组是项目的顺序列表
int item = value;
int [] one_dimensional_array = { value, value, value, .., value };
int [][] two_dimensional_array =
{
{ value, value, value, .. value },
{ value, value, value, .. value },
.. .. .. ..
{ value, value, value, .. value }
};
如果它是一个对象,那么它是相同的概念
Object item = new Object();
Object [] one_dimensional_array = { new Object(), new Object(), .. new Object() };
Object [][] two_dimensional_array =
{
{ new Object(), new Object(), .. new Object() },
{ new Object(), new Object(), .. new Object() },
.. .. ..
{ new Object(), new Object(), .. new Object() }
};
对于对象,您需要将其分配给null
以使用new Type(..)
初始化它们,像String
和Integer
这样的类是特殊情况,将按以下方式处理
String [] a = { "hello", "world" };
// is equivalent to
String [] a = { new String({'h','e','l','l','o'}), new String({'w','o','r','l','d'}) };
Integer [] b = { 1234, 5678 };
// is equivalent to
Integer [] b = { new Integer(1234), new Integer(5678) };
通常,您可以创建M
维数的数组
int [][]..[] array =
// ^ M times [] brackets
{{..{
// ^ M times { bracket
// this is array[0][0]..[0]
// ^ M times [0]
}}..}
// ^ M times } bracket
;
值得注意的是,创建一个M
维数组在空间方面是昂贵的。因为当你在所有维度上用M
创建一个N
维数组时,数组的总大小比N^M
大,因为每个数组都有一个引用,而在M维度上有一个(M-1)维数组参考文献。总大小如下
Space = N^M + N^(M-1) + N^(M-2) + .. + N^0
// ^ ^ array reference
// ^ actual data
要创建类对象的数组,可以使用java.util.ArrayList
。定义一个数组:
public ArrayList<ClassName> arrayName;
arrayName = new ArrayList<ClassName>();
为数组指定值:
arrayName.add(new ClassName(class parameters go here);
从数组中读取:
ClassName variableName = arrayName.get(index);
注意:
variableName
是对数组的引用意味着操纵variableName
将操纵arrayName
for循环:
//repeats for every value in the array
for (ClassName variableName : arrayName){
}
//Note that using this for loop prevents you from editing arrayName
for循环,允许您编辑arrayName
(常规循环):
for (int i = 0; i < arrayName.size(); i++){
//manipulate array here
}
在Java 8中,您可以像这样使用。
String[] strs = IntStream.range(0, 15) // 15 is the size
.mapToObj(i -> Integer.toString(i))
.toArray(String[]::new);
为Java 8及更高版本声明并初始化。创建一个简单的整数数组:
int [] a1 = IntStream.range(1, 20).toArray();
System.out.println(Arrays.toString(a1));
// Output: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19]
为[-50,50]和双精度[0,1E17]之间的整数创建一个随机数组:
int [] a2 = new Random().ints(15, -50, 50).toArray();
double [] a3 = new Random().doubles(5, 0, 1e17).toArray();
二次幂序列:
double [] a4 = LongStream.range(0, 7).mapToDouble(i -> Math.pow(2, i)).toArray();
System.out.println(Arrays.toString(a4));
// Output: [1.0, 2.0, 4.0, 8.0, 16.0, 32.0, 64.0]
对于String [],您必须指定构造函数:
String [] a5 = Stream.generate(()->"I will not squeak chalk").limit(5).toArray(String[]::new);
System.out.println(Arrays.toString(a5));
多维数组:
String 以上是关于如何在Java中声明和初始化数组?的主要内容,如果未能解决你的问题,请参考以下文章