📄 receiver.java
字号:
package com.javapatterns.command.book;
public class Receiver
{
public Receiver(int id)
{
_identification = id;
}
public void action()
{
System.out.println(" Action is binded by the Receiver: "+_identification);
}
private int _identification;
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -