listing 11-80.java
来自「手机游戏开发大全」· Java 代码 · 共 11 行
JAVA
11 行
private void DownRow ( ResultSet DisplayResults )
throws SQLException
{
String Store;
long Difference;
Store = DisplayResults.getString ( 1 ) ;
Difference = DisplayResults.getLong ( 2 ) ;
System.out.println("Store = " + Store);
System.out.println("Difference = " + Difference);
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?