java lambda 表达式中的双冒号的用法说明 ::

网友投稿 591 2022-11-22


java lambda 表达式中的双冒号的用法说明 ::

双冒号运算就是java中的[方法引用],[方法引用]的格式是

类名::方法名

注意是方法名哦,后面没有括号“()”哒。为啥不要括号,因为这样的是式子并不代表一定会调用这个方法。这种式子一般是用作Lambda表达式,Lambda有所wqhuycwPL谓懒加载嘛,不要括号就是说,看情况调用方法。

例如

表达式:

person -> person.getAge();

可以替换成

Person::getAge

表达式

() -> new HashMap<>();

可以替换成

HashMap::new

这种[方法引用]或者说[双冒号运算]对应的参数类型是Function T表示传入类型,R表示返回类型。比如表达式person -> person.getAge(); 传入参数是person,返回值是person.getAge(),那么方法引用Person::getAge就对应着Function类型。

下面这段代码,进行的操作是,把List里面的String全部大写并返还新的ArrayList,在前面的例子wqhuycwPL中我们是这么写的:

@Test

public void convertTest() {

List collected = new ArrayList<>();

collected.add("alpha");

collwqhuycwPLected.add("beta");

collected = collected.stream().map(string -> string.toUpperCase()).collect(Collectors.toList());

System.out.println(collected);

}

现在也可以被替换成下面的写法:

@Test

public void convertTest() {

List collected = new ArrayList<>();

collected.add("alpha");

collected.add("beta");

collected = collected.stream().map(String::toUpperCase).collect(Collectors.toCollection(ArrayList::new));//注意发生的变化

System.out.println(collected);

}

补充知识:Java解析属性配置文件并给占位符传参

我就废话不多说了,大家还是直接看代码吧~

//注册功能

public void register(User user){

//补齐数据

user.setUid(CommonUtils.uuid());

user.setStatus(false);

user.setActivationCode(CommonUtils.uuid() + CommonUtils.uuid());

try {

userDao.save(user);

} catch (Exception e) {

throw new RuntimeException();

}

//发送邮件

//加载配置文件

Properties properties = new Properties();

try {

properties.load(this.getClass().getClassLoader().getResourceAsStream("email_template.properties"));

} catch (IOException e1) {

throw new RuntimeException();

}

String host = properties.getProperty("host");

String username = properties.getProperty("username");

String password = properties.getProperty("password");

String from = properties.getProperty("from");

String to = user.getEmail();

String subject = properties.getProperty("subject");

//把占位符用后面的参数替换,后面参数可变

String content = MessageFormat.format(properties.getProperty("content"), user.getActivationCode());

//发送邮件3步曲

Session session = MailUtils.createSession(host, username, password);

Mail mail = new Mail(from, to, subject, content);

try {

MailUtils.send(session, mail);

} catch (Exception e) {

throw new RuntimeException();

}

}


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:实例讲解Java 自旋锁
下一篇:详解Java回环屏障CyclicBarrier
相关文章

 发表评论

暂时没有评论,来抢沙发吧~