選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

Application.java 167B

1234567891011
  1. public class Application {
  2. public int number;
  3. public Application(int number) {
  4. this.number = number;
  5. }
  6. public int getNumber() {
  7. return number;
  8. }
  9. }