avatar

正进一步

只有喜欢,才会全情投入,才会成功!!!

不关注架构设计细节的程序员不是一个好架构师

  • Home
  • Tags
  • Categories
  • Archives
  • 2018寄语
微信勘误:try{}里有一个return语句,那么紧跟在这个try后的finally{}里的code会不会被执行,什么时候被执行,在return前还是后?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
public static void main(String[] args) {
callMethod();
}
private static int callMethod() {
try {
System.out.println("call method");
return i();
}catch (Exception ex){

}finally {
System.out.println("finally block ");
}
return -1;
}
private static int i(){
System.out.println("i method");
return 1;
}

返回值

1
2
3
call method
i method
finally block
AI技术能让老板更好地监督你

这里写图片描述
在日常生活中,我们与 AI 可能有多次交互机会,但其中许多交互我们自己可能都没意识到。人工智能已经嵌入到应用非常广泛的一些消费技术中,许多消费者也都没注意到。因此,要说人工智能为现代办公注入了更强大的功能自然也不足为奇。以企业为重点的人工智能技术能够将老板和员工的关系引导向一个更有趣的方向,并且这一转型目前已经开始发生。

1567