一些练习题 //第一题: //让学生输入其姓名和语文,数学,英语,编程求总分和平均分 //并在屏幕上显示:XX你的总分分数为XX分,平均为XX分。 try { ...
分类:
其他好文 时间:
2014-07-09 23:06:02
阅读次数:
252
《OOC》全名是《Object-oriented Programming with ANSI-C》,步步为营地讲述了作者用C来实现封装、继承、多态、异常处理和自动化工具的过程。这本书吸引我的理由如下: 我也研究过OOC的问题,想和作者对比对比,取长补短。 学习C实现异常处理try{}ca...
分类:
其他好文 时间:
2014-07-09 20:51:09
阅读次数:
197
try-catch语句只要代码中包含finally子句,则无论try或catch语句块中包含什么代码--甚至return语句,都不会阻止finally子句的执行,来看下面这个函数: function testFinally(){ try{ return 2; }catch(error...
分类:
编程语言 时间:
2014-07-08 23:26:00
阅读次数:
249
//得到目录下的所有文件夹public static void Get_All_Filepath_In_Directory(string dirpath, List listpaths) { List filePaths = listpaths; //存放文件的路径 try { if (Is_Dir...
分类:
其他好文 时间:
2014-07-08 23:24:07
阅读次数:
183
//ODBC连接Excelpublic static void main(String[] args) {Connection conn = null;Statement stm = null;ResultSet rs = null;try {//加载ODBC驱动Class.forName("sun...
分类:
数据库 时间:
2014-07-06 16:51:33
阅读次数:
234
本文转载至http://blog.csdn.net/remote_roamer/article/details/7105776抛出错误的代码[cpp]view plaincopy//如果返回的报文是错误信息,则抛出错误if([outParamscount]<=0){[NSExceptionraise...
分类:
移动开发 时间:
2014-07-06 13:08:51
阅读次数:
247
把基本知识过了一遍,发现了几个自己容易 出错的小程序,记录下来。。。。
1,关于try-catch异常
1,关于try-catch异常
package chapter5;
public class p101 {
public static void main(String args[])
{
int a[]=new int[3];
try{...
分类:
编程语言 时间:
2014-07-06 11:11:59
阅读次数:
175
@SuppressWarnings("rawtypes")
public static void getProperties() {
Properties properties = null;
InputStream in = null;
try {
properties = new Properties();
//获取文件
in = Object.cla...
分类:
编程语言 时间:
2014-07-05 23:47:03
阅读次数:
290
There's a much simpler solution for this. Try running the following command:sudo /usr/sbin/DevToolsSecurity --enable
分类:
数据库 时间:
2014-07-05 22:43:50
阅读次数:
451
private RichTextBox FindControl() { RichTextBox ret = null; try { Control[] controls = Application.OpenForms["MainForm"].Controls.Find("txtContent", ....