java中如何返回一个数组;

public class xiti5_5
{
public static void Printf(int a[][])
{
for(int i=0;i<a.length;i++)
{
for(int j=0;j<a[0].length;j++)
{
System.out.print(a[i][j]+" ");
if(j==a[0].length-1)
System.out.println();
}
}
}
public static int FangFa(int a[][])
{
int b[][]=new int[a[0].length][a.length];
for(int i=0;i<a[0].length;i++)
{
for(int j=0;j<a.length;j++)
b[i][j]=a[j][i];
}
return b[][];
}
public static void main(String args[])
{
int a[][]={{1,2,3},{4,5,6}};
Printf(a);
Printf(FangFa(a));
}
}
我想在主函数中用Printf(FangFa(a));方法调用 实现数组输出。

修改后如下:

public static void Printf(int a[][]) {
    for (int i = 0; i < a.length; i++) {
        for (int j = 0; j < a[0].length; j++) {
            System.out.print(a[i][j] + " ");
        }
        System.out.println();
    }
}

public static int[][] FangFa(int a[][]) {
    int b[][] = new int[a[0].length][a.length];
    for (int i = 0; i < a[0].length; i++) {
        for (int j = 0; j < a.length; j++) {
            b[i][j] = a[j][i];
        }
    }
    return b;
}

public static void main(String args[]) {
    int a[][] = {{1, 2, 3}, {4, 5, 6}};
    Printf(a);
    Printf(FangFa(a));
}

提示一点:新手写代码时不要养成不好的习惯,比如if或者for后面不写大括号,虽然这么写没问题,但是不符合编码规范,工作中一般是不允许这么写的,容易出错。

温馨提示:答案为网友推荐,仅供参考
第1个回答  2015-07-08
可以使用静态变量进行返回、用指针传递、通过返回传入数组的指针三种方法实现;
代码分别如下:
// 方法1,用静态变量进行返回
char *SubFunction(void)
{
static char szText[5] = "adfa"; // 用静态空间
//对p进行赋值操作
return szText;
}
void Caller() // 这个函数调用SubFunction
{
TRACE("%s\n", SubFunction);
}

// 方法2,用指针传递
void SubFunction(char *pText1, char *pText2)
{
// 对pText1, pText2运算
strcpy(pText1, "love");
strcpy(pText2, "you");
return;
}
void Caller() // 这个函数调用SubFunction
{
char szText1[5], szText2[5]; // 当然这里也可以动态分配内存
SubFunction(szText1, szText2); // szText1, szText2就是带回的值
TRACE("%s %s\n", szText1, szText2);
}

方法3 通过返回传入数组的指针
#include<stdio.h>
double *copy1(double array[],double c1[],int n);
double *copy2(double array[],double c2[],int n);
void main(void)
{
int size=4;
double source[4]={1,2.3,4.5,6.7};
double first_copy[4];
double second_copy[4];
double *fp,*sp;
fp=copy1(source,first_copy,size);
printf("The first copy: %f,%f,%f,%f\n",fp[0],fp[1],fp[2],fp[3]);
sp=copy2(source,second_copy,size);
printf("The second copy: %f,%f,%f,%f\n",sp[0],sp[1],sp[2],sp[3]);
}
double *copy1(double array[],double c1[],int n)
{
int i;
for(i=0;i<n;i++)
c1[i]=array[i];
return c1;
}
double *copy2(double array[],double c2[],int n)
{
double *p;
int i;
for(i=0;i<n;i++)
{
p=&array[i];
c2[i]=*p;
}
return c2;
}
第2个回答  推荐于2017-10-01
return 一个数组就可以了

你可以先生成一个数组然后用return方法返回就可以了。
public int[] getIntArr(){
int[] arr={1,2,1,2,1,2};
return arr;

}
第3个回答  推荐于2018-10-03
public class xiti5_5 {
public static void Printf(int a[][]) {
for (int i = 0; i < a.length; i++) {
for (int j = 0; j < a[i].length; j++) {
System.out.print(a[i][j] + " ");
}

System.out.println();
}
}

public static int[][] FangFa(int a[][]) {
int b[][] = new int[a[0].length][a.length];
for (int i = 0; i < a[0].length; i++) {
for (int j = 0; j < a.length; j++)
b[i][j] = a[j][i];
}
return b;
}

public static void main(String args[]) {
int a[][] = { { 1, 2, 3 }, { 4, 5, 6 } };
Printf(a);
Printf(FangFa(a));
}
}

-----------------
1 2 3
4 5 6
1 4
2 5
3 6本回答被提问者和网友采纳
第4个回答  2018-09-21
这就直接能输出出来,你那步赋值完全没必要,而且即使是返回也不能返回b[][] 直接返回b就行了,而且java一般吧数组[]的放在变量名前面
public static void FangFa(int[][] a)
{
for(int i=0;i<a[0].length;i++)
{
for(int j=0;j<a.length;j++)
System.out.print(a[j][i]);
}
System.out.println();
}
相似回答