强无值子句列英文解释翻译、强无值子句列的近义词、反义词、例句
英语翻译:
【计】 strong void clause train
分词翻译:
强的英语翻译:
better; by force; make an effort; powerful; strive; strong; stubborn
无值的英语翻译:
【计】 void value
子句列的英语翻译:
【计】 clause train
网络扩展解释
强无值子句列
强无值子句列是计算机科学中的一个概念。它描述了一个没有返回值的并且一定会抛出异常的方法。
中文拼音
qiáng wú zhí zǐ jù liè
英语解释翻译
A void function that always throws an exception.
英文读音
[kwɑŋ] [wʌ] [ʒi] [zɪ] [dʒʌ] [liː]
英文的用法
在编程中,强无值子句列可用于处理情况严谨的程序逻辑。在方法中使用强无值子句列可以保证该方法的所有可能的异常情况都会得到处理。
英文例句
Example 1:
void divide(int x, int y) throws ArithmeticException {
if(y == 0) {
throw new ArithmeticException("Cannot divide by zero");
}
int result = x/y;
}
Example 2:
void readDataFromDatabase() throws SQLException {
//code to read data from database
if(data == null) {
throw new SQLException("Data not found");
}
}
例句1:void divide(int x, int y) throws ArithmeticException {如果(y == 0) {throw new ArithmeticException("Cannot divide by zero");}int result = x/y;}
例句2:void readDataFromDatabase() throws SQLException {//code to read data from databaseif(data == null) {throw new SQLException("Data not found");}}
英文近义词
无
英文反义词
非强无值子句列(Non-void function)
英文单词常用度
强无值子句列这个技术术语在编程领域中较为常见,但是在日常英语中几乎不使用。在编程书籍和技术文章中会频繁出现。