?? pokergame.java
字號:
package poker;import javax.swing.UIManager;import java.awt.*;/** * <p>Title: 斗地主</p> * <p>Description: 主程序</p> * <p>Copyright: Copyright (c) 2004</p> * <p>Company: </p> * @author 李艷生 * @version 1.0 */public class PokerGame { //Construct the application public PokerGame() { PokerFrame frame = new PokerFrame(); frame.setVisible(true); } //Main method public static void main(String[] args) { new PokerGame(); }}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -