📄 msik7n2g.java~7~
字号:
package computerworld;
public class MSIK7N2G implements MainBoard{
public void Attach(CPU cpu){
System.out.println(this.getClass ().toString ());
if (cpu.getClass ().toString () != "computerworld.Intel") {
System.out.println (this.getClass ().toString () + "只能配 AMD CPU");
}
else {
System.out.println (this.getClass ().toString () + "配" +
cpu.getClass ().toString ());
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -