Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
なぜこれはコンパイルされないのですか?
int? number = true ? 5 : null;
'int' と <null> の間に暗黙的な変換がないため、条件式の型を特定できません
null識別可能なタイプはありません-それを幸せにするためにちょっとした工夫が必要です:
null
int? number = true ? 5 : (int?)null;