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

Driver.java 295B

123456789101112131415161718
  1. package main;
  2. public class Driver{
  3. public static void main(String[] args) {
  4. Driver d = new Driver();
  5. d.doStuff();
  6. d.doOtherStuff();
  7. }
  8. private void doOtherStuff() {
  9. //System.out.println("doing other stuff");
  10. }
  11. private void doStuff() {
  12. //System.out.println("doing stuff");
  13. }
  14. }