?? authenticator_s.java
字號(hào):
/**
* 封裝的Authenticator_s
*/
package src;
import java.io.*;
public class Authenticator_s implements Serializable{
byte[] IDc,ADc;
long TS5;
public Authenticator_s(byte[] IDc,byte[] ADc,long TS5)
{
this.IDc = IDc;
this.ADc = ADc;
this.TS5 = TS5;
}
public long getTS5()
{
return this.TS5;
}
public byte[] getIDc()
{
return this.IDc;
}
public byte[] getADc()
{
return this.ADc;
}
}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -