役に立ちそうもないTips移転版

俺得なTipsを書き連ねるだけのブログ。

Javaの配列宣言

 C/C++では、
int* a, b;
のときbはintだが、
 Javaの場合
int a, b;
のとき、bもint