Processing, catch
用法介绍。
用法
try {
tryStatements
} catch (exception) {
catchStatements
}
参数
tryStatements
如果此代码引发异常,则运行"catch" 中的代码exception
抛出的 Java 异常catchStatements
处理异常的代码
说明
catch
关键字与try
一起使用以处理异常。 Sun 的 Java 文档将异常定义为“在程序执行期间发生的事件,它破坏了程序指令的正常流程”。例如,这可能是读取文件时出错。
例子
BufferedReader reader;
String line;
void setup() {
// Open the file from the createWriter() example
reader = createReader("positions.txt");
}
void draw() {
try {
line = reader.readLine();
} catch (IOException e) {
e.printStackTrace();
line = null;
}
if (line == null) {
// Stop reading because of an error or file is empty
noLoop();
} else {
String[] pieces = split(line, TAB);
int x = int(pieces[0]);
int y = int(pieces[1]);
point(x, y);
}
}
相关用法
- Processing case用法及代码示例
- Processing camera()用法及代码示例
- Processing captureEvent()用法及代码示例
- Processing clip()用法及代码示例
- Processing curveDetail()用法及代码示例
- Processing char()用法及代码示例
- Processing ceil()用法及代码示例
- Processing curveVertex()用法及代码示例
- Processing concat()用法及代码示例
- Processing continue用法及代码示例
- Processing color()用法及代码示例
- Processing copy()用法及代码示例
- Processing createFont()用法及代码示例
- Processing cos()用法及代码示例
- Processing circle()用法及代码示例
- Processing char用法及代码示例
- Processing color用法及代码示例
- Processing createImage()用法及代码示例
- Processing createShape()用法及代码示例
- Processing class用法及代码示例
- Processing curve()用法及代码示例
- Processing curveTightness()用法及代码示例
- Processing createInput()用法及代码示例
- Processing constrain()用法及代码示例
- Processing clear()用法及代码示例
注:本文由纯净天空筛选整理自processing.org大神的英文原创作品 catch。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。