游戏王arcv卡片力量sp融合在哪买
游戏,海马的主题盒,十代的包,等等,很多地方都能开到
这个程序错在哪呢
package test;
public class TapeDeck {
boolean canRecord = false;
public void playTape() {
System.out.println(tape playing);
}
public void recordTape() {
System.out.println(tape recording);
}
public static class TapeDeckTestDrive {//因为mian是static,要保持一致
public static void main(String[] args) {
TapeDeck t = new TapeDeck();
t.canRecord = true;// 不是ture
t.playTape();
if (t.canRecord == true) {// 不是ture
t.recordTape();
}
}
}
}