mirror of
https://github.com/JetBrains/intellij-sdk-code-samples.git
synced 2025-07-27 16:57:49 +08:00
6 lines
146 B
Java
6 lines
146 B
Java
public class X {
|
|
void f(boolean isMale) {
|
|
String title = isMale < caret > ? "Mr." : "Ms.";
|
|
System.out.println("title = " + title);
|
|
}
|
|
} |