标签: java lambda java-8 java-stream
让我说我有一个字符串连接uris。
http://...[sp]http://...[sp]http://...
我试图将每个拆分字符串转换为URI。
Stream.of(string.split("\\s")).map(uri -> URI::new);
编译器抱怨。
Cannot infer type-variable(s) R
我做错了什么?
答案 0 :(得分:1)
Stream.of(s.split("//s")).map(URI::new);
click here for an example