我看到javascript有类似的东西。
有可能在Android中做这样的事情吗?我知道如何使用数组名称,我的问题是关于直接从组成数组的变量返回和分配。
private int[] calcHead() {
int i;
int j;
int k;
// Do stuff
return {i, j, k}; <-- is this possible? (I am getting error: "The Method must return a result of type int[]")
}
private void otherFunc(){
int a;
int b;
int c;
{a, b, c} = calcHead(); <-- is this possible?
}