?? bitpack.java
字號(hào):
/*
* SIP Communicator, the OpenSource Java VoIP and Instant Messaging client.
*
* Distributable under LGPL license.
* See terms of license at gnu.org.
*/
package net.java.sip.communicator.impl.media.codec.audio.ilbc;
import java.lang.*;
/**
* @author Jean Lorchat
*/
class bitpack {
int firstpart;
int rest;
public bitpack() {
firstpart = 0;
rest = 0;
}
public bitpack(int fp, int r) {
firstpart = fp;
rest = r;
}
public int get_firstpart() {
return firstpart;
}
public void set_firstpart(int fp) {
firstpart = fp;
}
public int get_rest() {
return rest;
}
public void set_rest(int r) {
rest = r;
}
}
?? 快捷鍵說(shuō)明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -