2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Unityでnull合体演算子(??)やnull条件演算子(?.)を使うと

Last updated at Posted at 2024-10-23

概要

UnityのC#ではnull合体演算子(??)やnull条件演算子(?.)を使用しても特にエラーが表示されたりすることはありません。ですがこういう事もあったという体験談を共有したいと思います。

本文

以下のようなnull合体演算子(??)とnull条件演算子(?.)を使ったコードをUnityEditorで実行すると特に問題はなく思った通りの動きをしてくれました。

return testList?.Values.Select(data => data.name).ToList() ?? new List<Test>();

でもビルドして実機で動かしてみると正しく動作してくれませんでした。

調べてみると、UnityのC#では少し特殊なようでこれらは正常に動作しないこともあるとのことでした:tired_face:

UnityEditor上では正常に動いていてもビルドしたら思った通りに動かないこともありますので頭の片隅に置いておくと幸せになれるかもしれない。というお話でした!:open_hands_tone2:

補足

関連記事リンク
【Unity】Null伝搬(条件)演算子とUNT0008

動画

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?