在下面的代码中,我试图理解java-8中提供的Optional的概念。我创建了以下示例,以了解orElse()背后的原理。 执行代码后,将执行defaultMethod()的正文,并返回
new User("DEFAULT_USER", "default@gmail.com", "0000", null);
反对y。 log语句按我的预期打印了正确的数据。
问题是,为什么没有打印defaultMethod()中的所有日志?是引入了elElse()来仅返回值,而不执行所提供方法的整个主体。
代码:
@Override
protected void onResume() {
super.onResume();
User user_1 = this.getUser_1();
User user_2 = this.getUser_2();
User user_3 = this.getUser_3();
User y = OptionalsUtils.toOptional(user_1)
.map(u1 -> this.getUser_3())
.orElse(this.defaultMethod());
Log.i(TAG_LOG, "orElse->y: " + y.getUserName());
}
private User getUser_3() {
List<String> list = new ArrayList<String>(5);
list.add("espn");
list.add("qtv");
list.add("der Spiegel");
list.add("deutsch welle");
User user = new User();
user.setUserName("johannas");
user.setUserEmailAddres("joha90@gmail.com");
user.setUserId("2345");
user.setUserFavoritesTvList(null);
return null;
}
private User defaultMethod() {
Log.w(TAG_LOG, "defaultMethod is called1");
Log.w(TAG_LOG, "defaultMethod is called2");
Log.w(TAG_LOG, "defaultMethod is called3");
Log.w(TAG_LOG, "defaultMethod is called4");
Log.w(TAG_LOG, "defaultMethod is called5");
Log.w(TAG_LOG, "defaultMethod is called5");
Log.w(TAG_LOG, "defaultMethod is called5");
Log.w(TAG_LOG, "defaultMethod is called5");
return new User("DEFAULT_USER", "default@gmail.com", "0000", null);
}
日志:
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 W/ActMain: defaultMethod is called1
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 W/ActMain: defaultMethod is called2
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 W/ActMain: defaultMethod is called3
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 W/ActMain: defaultMethod is called4
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 W/ActMain: defaultMethod is called5
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 W/ActMain: defaultMethod is called5
2018-12-17 12:46:15.774 20158-20158/com.example.optionals_00 I/ActMain: orElse->y: DEFAULT_USER
答案 0 :(得分:2)
这不是与orElse
相关的问题。 Logcat
将跳过缺少的这两行,因为它们是相同的。
如果Logcat检测到重复的日志,它将仅显示第一个和最后一个,并且在这之间,您应该可以看到类似于以下消息的消息:
04-16 03:24:21.591 I:uid = 10085(u0_a85)xxx.yyy.zzz相同的2行
此行为始于Android Studio的3.1
版本。 issue was opened可以解决此问题,因为许多人不喜欢它,因此在Android Studio的3.2
版本中将其删除。因此,如果您使用的是Android Studio 3.0
或3.2
,则应显示所有日志(即使它们相同)。