简体   繁体   中英

Is it possible to write lambda letter (λ) in IntelliJ IDEA?

I would like to use this interface: http:\/\/javaslang.com\/javadoc\/2.0.0-RC2\/javaslang\/%CE%BB.html<\/a>

But is it possible to write lamda greek letter in IntelliJ IDEA or generally in any editor?

This is all about your keyboard and OS, and not specific to Intellij IDEA. You can create one by copy and pasting, which is pretty easy. If you want to insert it directly then use the way of typing special characters specific to your platform (Windows, Mac, Linux, ...).

You can express any Unicode character anywhere in Java source code via the \? form. It is not just for String<\/code> s and char<\/code> s. (For characters outside the BMP, you need two of those, forming a surrogate pair.) Inasmuch as there sometimes are multiple characters with similar glyphs, Unicode escapes have the advantage of being totally unambiguous.

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