多选题 Which of the following statements will not compile?
  • A. if(true);
  • B. if(true) {}
  • C. if(true) {;}
  • D. if(true) {;;}
  • E. if(true); {};
  • F. All statements will compile.
【正确答案】 F
【答案解析】所有的语句都会编译。