作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法在 Dart 中测试函数或方法的存在,而无需尝试调用它并捕获 NoSuchMethodError 错误?
我正在寻找类似的东西
if (exists("func_name")){...}
func_name
的函数存在。
最佳答案
你可以用 mirrors API 做到这一点:
import 'dart:mirrors';
class Test {
method1() => "hello";
}
main() {
print(existsFunction("main")); // true
print(existsFunction("main1")); // false
print(existsMethodOnObject(new Test(), "method1")); // true
print(existsMethodOnObject(new Test(), "method2")); // false
}
bool existsFunction(String functionName) => currentMirrorSystem().isolate
.rootLibrary.functions.containsKey(functionName);
bool existsMethodOnObject(Object o, String method) => reflect(o).type.methods
.containsKey(method);
existsFunction
仅测试是否带有
functionName
的函数存在于当前库中。因此,
import
提供的功能声明
existsFunction
将返回
false
.
关于dart - 如何在 Dart 中测试函数的存在?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13994443/
我是一名优秀的程序员,十分优秀!