您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. package test;
  2. public class Test {
  3. public Test() {
  4. }
  5. public static void main(String[] args) {
  6. Test t = new Test();
  7. t.itdFunction();
  8. }
  9. private void privateMethod(String xxx) {
  10. System.out.println("hello "+xxx);
  11. }
  12. }