exit 被用来结束脚本, 像C语言一样, 他也会返回一个值来传给父进程.
父进程会判断是否可用exit n n是 0 ~ 255 十进制整数有点类似程序设计中的 return, 使用 return 100 等非0数来表示不成功,
其中脚本不一样的地方可以分别返回不一样的不成功标记数
分类:
其他好文 时间:
2014-05-12 16:19:54
阅读次数:
212
本次内容:异常机制1、为什么需要异常2、异常3、error类4、exception类5、exception类中的unchecked
exception 举例:6、常用异常处理方法a.try注意:一个try语句块至少得带一个finally语句块或catch语句块 1 package
array; 2....
分类:
编程语言 时间:
2014-05-12 16:17:54
阅读次数:
406
Given an unsorted array of integers, find the
length of the longest consecutive elements sequence.For example,Given[100, 4,
200, 1, 3, 2],The longest ...
分类:
其他好文 时间:
2014-05-10 20:06:26
阅读次数:
404
LeetCode OJGiven an array withnobjects colored
red, white or blue, sort them so that objects of the same color are adjacent,
with the colors in the or...
分类:
其他好文 时间:
2014-05-02 17:37:37
阅读次数:
468
本次内容:file类 1 package array; 2 /** 3 * file类 4 */ 5
import java.io.File; 6 import java.io.IOException; 7 8 public class file { 9
public static ...
分类:
编程语言 时间:
2014-05-02 16:50:03
阅读次数:
387
SubsetsGiven a set of distinct integers,S,
return all possible subsets.Note:Elements in a subset must be in non-descending
order.The solution set must...
分类:
其他好文 时间:
2014-05-02 16:39:15
阅读次数:
315
1. yield它表明一个方法,操作符或者get选择器里会出现迭代。用yield return
同时返回每一个元素, 返回类型必须是IEnumerable, IEnumerable, IEnumerator, or
IEnumerator.Example:public static IEnumera...
分类:
其他好文 时间:
2014-05-02 15:19:03
阅读次数:
287
本次内容:DateFormat类1、DateFormat类 1 package array; 2
/** 3 * 时间和字符串之间的转化 4 */ 5 import java.text.DateFormat; 6 import
java.text.ParseException; 7 impor...
分类:
编程语言 时间:
2014-05-02 14:16:19
阅读次数:
518
方法定义的完整格式。
访问权限{public |default|protected|private}[final][static][synchronized]返回值类型|void 方法名称(参数类型 参数名称,.....)[throws Exception1,Exception2]{return[返回值|返回用处]};
一个多线程的程序如果通过Runnable接口实现的,则意味着类中的属性将被...
分类:
编程语言 时间:
2014-05-02 10:11:29
阅读次数:
346
Given a sorted array and a target value, return
the index if the target is found. If not, return the index where it would be if
it were inserted in or...
分类:
其他好文 时间:
2014-05-02 09:54:11
阅读次数:
269