⭐️ "จัดการกับ null ง่าย ๆ ใน C# ด้วยเครื่องหมายอะไรเอ่ยย ??"
.
แน่นอนว่าปัญหาของข้อมูลที่่เป็น null นี้ตามมาหลอกหลอนเราทั้ง Java และ C# แต่เรามีวิธีจัดการง่าย ๆ ด้วยเครื่องหมาย ??
.
✅ โดยการทำงานนั้นง่ายสุด ๆ เหมือนกับการใช้ operator อื่น ๆ ในรูปแบบ
.
string someVariable = null;
string message = someVariable ?? "Variable is null";
.
ถ้าหากข้อมูลด้านซ้ายมือไม่ได้เป็น null มันจะทำการ return ข้อมูลดังกล่าวเฉพาะแค่ด้วยซ้ายมือออกไปเลย
.
❗️ "แต่ถ้าเป็น null หละ ?"
.
คำตอบก็คือเขาก็แค่ return ข้อมูลด้านขวามือไปแทนเท่านั้นเองง ! โดยตรงนี้ขึ้นกับ Data type ที่เราอยากจะเล่นได้ด้วยนะ :D
.
วันนี้ก็เป็นทิปเทคนิค เล็ก ๆ น้อย ๆ ที่แอดเห็นว่ามีประโยชน์สุด ๆ ลูกเพจท่านไหนมีทิปอะไรบ้าง เอามาแชร์กันได้เลยนะ <3
.
#BorntoDev - 🦖 Digital Academy ให้การพัฒนาทักษะเทคโนโลยีเป็นเรื่องสนุกไปพร้อมกับเรา
「java return null」的推薦目錄:
- 關於java return null 在 BorntoDev Facebook 的最佳解答
- 關於java return null 在 Returning null in a method whose signature says return int? 的評價
- 關於java return null 在 Is it better to return NULL or empty values from functions ... 的評價
- 關於java return null 在 [java] Methods returning null should be annotated @Nullable 的評價
- 關於java return null 在 An Essential Guide to JavaScript null 的評價
- 關於java return null 在 else return null - while true live 的評價
java return null 在 Is it better to return NULL or empty values from functions ... 的推薦與評價
17 Answers · NULL should be returned if the application expects a data to be available but the data is not available. For example, a service that returns the ... ... <看更多>
相關內容
java return null 在 [java] Methods returning null should be annotated @Nullable 的推薦與評價
this is an idea for a new check ReturnMissingNullable: methods returning null should be annotated @Nullable. Invalid code: Date created; ... ... <看更多>
java return null 在 Returning null in a method whose signature says return int? 的推薦與評價
... <看更多>
相關內容