Files
My-Notes/笔记/CSharp/入门/三目运算符.md
T
2026-04-13 15:40:15 +08:00

6 lines
138 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
语法: A ? B : C
返回值类型必须一致
EG: str = true ? "真" : "假"//str为真
EG: str = 1 > 2 ? "真" : "假"//假
#入门