简介:由于经常在使用矩阵进行计算时,会首先将一维数组转为二维数组。因此,在这里记录一下,也希望对他人有帮助。
实例代码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
package deal;
public class arrytest {
public static void main(string[] args) {
//创建一个一维数组 0,1,2,3...,10
double [] c= new double [ 10 ];
for ( int i = 0 ; i < c.length; i++) {
c[i]=i;
}
double [][] testarr=twoarry(c);
for ( int i = 0 ; i < testarr.length; i++) {
for ( int j = 0 ; j < testarr[i].length; j++) {
system.out.println(testarr[i][j]);
}
}
}
//一维数组转化为二维数组
public static double [][] twoarry( double [] onedouble){
double [][] arr= new double [ 1 ][onedouble.length];
for ( int i = 0 ; i < onedouble.length; i++) {
arr[ 0 ][i]=onedouble[i];
}
return arr;
}
}
|
运行结果:
总结
以上就是本文关于java编程一维数组转换成二维数组实例代码的全部内容,希望对大家有所帮助。感兴趣的朋友可以继续参阅本站其他相关专题,如有不足之处,欢迎留言指出。感谢朋友们对本站的支持!
原文链接:http://blog.csdn.net/qy20115549/article/details/71077952