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

12345678910111213
  1. /**
  2. * @version 1.0
  3. * @author
  4. */
  5. public class Hello {
  6. public static void main(String[] args) throws Exception {
  7. System.out.println("hello");
  8. fromA();
  9. Thread.currentThread().sleep(2000);
  10. }
  11. }