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

Simple.java 239B

123456789101112131415161718192021
  1. // A simple class, interfered with by all sorts of advice !
  2. public class Simple {
  3. public void m1() {
  4. }
  5. public String m2() {
  6. return "a";
  7. }
  8. public static void main(String[] argv) {
  9. }
  10. private void mSecret() {
  11. }
  12. }