【单选题】//下面关于异步机制的代码,执行结果为 void myTask(){ print("this is my task"); } void main() { print("main start"); new Future((){ print("this is my task"); }); new Future.microtask((){ print("this is microtask"); ...
A.
main start this is microtask this is my task main stop
B.
main start main stop this is microtask this is my task
C.
main start this is my task this is microtask main stop
D.
main start main stop this is my task this is microtask
【单选题】//下面关于异步延迟的代码,执行结果为 void main() { print("main start"); new Future.delayed(new Duration(seconds:1),(){ print('task 1'); }); new Future((){ print("task 2"); }); print("main stop"); }
A.
main start task 2 task 1 main end
B.
main start main end task 2 task 1
C.
main start main end task 1 task 2
D.
main start task 1 task 2 main end
【单选题】以下关于白盒测试和黑盒测试的理解 , 正确是 ( )
A.
白盒测试通过对程序内部结构的分析、 检测来寻找问题
B.
白盒测试通过一些表征性的现象、 事件、 标志来判断内部的运行状态
C.
单元测试可采用白盒测试方法,集成测试则采用黑盒测试方法
【单选题】以下关于白盒测试和黑盒测试的理解,正确的是()。
A.
白盒测试通过对程序内部结构的分析、检测来寻找问题
B.
白盒测试通过一些表征性的现象、事件、标志来判断内部的运行状态
C.
单元测试可应用白盒测试方法,集成测试则采用黑盒测试方法
【单选题】以下关于白盒测试和黑盒测试的理解,正确的是( )
A.
白盒测试通过一些表征性的现象、事件、标志来判断内部的运行状态
C.
单元测试可采用白盒测试方法,集成测试则采用黑盒测试方法
D.
白盒测试通过对程序内部结构的分析、检测来寻找问题
【简答题】请将下面这段话翻译成英语。 当前,随着构建社会主义新农村步伐的推进,“大学生村官"(college-graduate village officials)已成为热门话题。不少髙校毕业的大学生走进农村,他们在新农村的建设中做出了重大贡献。大学生到农村任职,对新农村建设起着积极的推动作用,对大学生自己来说更是一种锤炼。这将对当代大学生人生目标的追求和行为价值产生积极作用,同时也会使已“走马上任”的大学...
【单选题】//下面关于Future的代码,执行结果为 void main() { print("main start"); new Future((){ print("async task"); }); new Future.sync((){ print("sync task"); }); print("main stop"); }
A.
main start main stop sync task async task
B.
main start sync task main stop async task
C.
main start sync task async task main stop
D.
main start async task sync task main stop