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?
}