简体   繁体   中英

Lambda Expression Java Conversion

Im quite new to the new Java features and was wondering how I could convert this bit of code into a lambda expression?

tc.setCellValueFactory((p) -> {
            return new ReadOnlyStringWrapper(p.getValue());
});

This is what IntelliJ Idea IDE is giving me.

这是

What your IDE means is likely:

(p) -> new ReadOnlyStringWrapper(p.getValue());

No return needed.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM