📄 usserver.java
字号:
public class USServer implements Receiver
{
public USServer()
{
}
public void connect()
{
System.out.println("You're connected to the US server.");
}
public void diagnostics()
{
System.out.println("The US server diagnostics check out OK.");
}
public void shutdown()
{
System.out.println("Shutting down the US server.");
}
public void reboot()
{
System.out.println("Rebooting the US server.");
}
public void disconnect()
{
System.out.println("You're disconnected from the US server.");
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -