private void gridView1_DoubleClick(object sender,
EventArgs e) { try { DataRow dradd =
gridView1.GetDataRow(gridView1.FocusedRowHandle); //params obje...
分类:
其他好文 时间:
2014-06-11 23:14:11
阅读次数:
2192
快捷键 功能 备注
Ctrl+1 快速修复 最经典的
Alt+/ 提供内容的帮助 记不全方法 类 属性 最常用
输入try 按alt / 自动出现代码try catch 一般很容易出现异常的代码或者是很容易出错误的代码放在try...catch中
Ctrl+O 显示类中 方法 属性和大纲 查找bug时非常有用(函数列表) 多按一次Ctrl+O 列出更多的内部变量
...
分类:
系统相关 时间:
2014-06-07 16:28:36
阅读次数:
319
需求
输入密码字符串,与设定的密码“1234567”进行比较,两者相符则输出"congratulations!”,不符则输出“try again!”。程序bug
实际运行过程中发现,输入某些8位字符串,如33333333,也会得到"congratulations!”,这与预期功能不符。出现bug.....
分类:
其他好文 时间:
2014-06-07 11:21:46
阅读次数:
215
_com_issue_error(HRESULT x)throw a _com_error
object 1 try 2 { 3 HRESULT hr; 4 ... 5 if (FAILED(hr)) 6 _com_issue_error(hr);
...
分类:
其他好文 时间:
2014-06-06 11:44:29
阅读次数:
199
Configuration类用来管理我们的配置文件的信息的,通过它,我们可以通过创建一个configuration实例来管理相应的配置文档,但是通常我们只创建一个configuration实例。
下面是一个通用的创建实例的代码Java代码 try{ sessionFactory = new Con....
分类:
系统相关 时间:
2014-06-06 09:19:09
阅读次数:
291
Catch That CowDescriptionFarmer John has been
informed of the location of a fugitive cow and wants to catch her immediately.
He starts at a point N (0...
分类:
其他好文 时间:
2014-06-05 19:54:29
阅读次数:
298
string connStr = "Data Source=.;Initial
Catalog=MySchoolMoreData;Integrated Security=True"; try { usi...
分类:
Web程序 时间:
2014-06-05 15:26:20
阅读次数:
260
public void test() throws IOException{ try(
BufferedReader br=new BufferedReader(new FileReader("AutoCloseTest.java"));
PrintStream ps=new PrintStream...
分类:
编程语言 时间:
2014-06-05 14:12:26
阅读次数:
293
longtime=System.currentTimeMillis(); System.out.println(time); SimpleDateFormatformat=newSimpleDateFormat("yyyy-MM-ddHH:mm:ss"); java.util.Dated1=newDate(time); Stringnow=format.format(d1); System.out.println(now); longt=0; try{ java.util.Dated2=format.pa..
分类:
移动开发 时间:
2014-06-04 12:51:10
阅读次数:
474
Java 关键字列表 (依字母排序
共51组),所有的关键字都是小写,在MyEclipse中都会显示不同的颜色: abstract, assert,boolean, break, byte,
case, catch, char, class, const, continue, default, do...
分类:
编程语言 时间:
2014-06-03 14:44:01
阅读次数:
453