本月博客排行
-
第1名
arpenker -
第2名
kaizi1992 -
第3名
wy_19921005
年度博客排行
-
第1名
龙儿筝 -
第2名
宏天软件 -
第3名
青否云后端云 - wallimn
- vipbooks
- gashero
- wy_19921005
- benladeng5225
- fantaxy025025
- javashop
- e_e
- tanling8334
- arpenker
- sam123456gz
- kaizi1992
- zysnba
- xiangjie88
- lemonhandsome
- ganxueyun
- xyuma
- Xeden
- wangchen.ily
- zhanjia
- jh108020
- johnsmith9th
- zxq_2017
- jbosscn
- forestqqqq
- ajinn
- daizj
- xpenxpen
- wjianwei666
- ranbuijj
- 喧嚣求静
- kingwell.leng
- silverend
- lchb139128
- kristy_yy
- jveqi
- lich0079
- lzyfn123
- java-007
- sunj
- yeluowuhen
- lerf
- xiaoxinye
- flashsing123
- lxguy
- zhangjijun
- lyndon.lin
最新文章列表
批处理启动oracle 监听服务
批处理启动oracle 监听服务
oracle 10g
启动监听服务:
net start OracleOraDb10g_home1TNSListener
net start OracleServiceORCL
停止监听服务:
net stop OracleOraDb10g_home1TNSListener
net stop OracleServiceORCL
分别把上面的启动 ...
java多线程小例子
package com.knowledge.Test;
/**
* 继承Thread类
* @author job
*
*/
public class syn_gou extends Thread{
//余额
int yu;
//总金额
int count = 1000;
//每次索取金额
int getmoney = ...
Java程序员面试题之五
26、Math.round(11.5)等於多少? Math.round(-11.5)等於多少?
Math.round(11.5)==12
Math.round(-11.5)==-11
round方法返回与参数最接近的长整数,参数加0.5后求其floor。
27、String s = new String("xyz");创建了几个String O ...