您好,登錄后才能下訂單哦!
今天在一個(gè) .NET Core 項(xiàng)目中調(diào)用一個(gè)自己實(shí)現(xiàn)的使用 params 可變參數(shù)的方法時(shí)觸發(fā)了 null 引用異常,原以為是方法中沒有對(duì)參數(shù)進(jìn)行 null 值檢查引起的,于是加上 check null 代碼:
public static void BuildBlogPostLinks(params BlogPostDto[] blogPosts) { if (blogPosts == null) return; foreach (var blogPost in blogPosts) { //... } }
結(jié)果卻出人意料, null 引用異常繼續(xù),仔細(xì)看異常 stack 才發(fā)現(xiàn)原來 null 引用異常是在 foreach 時(shí)拋出的,需要在 foreach 時(shí)對(duì) blogPost 進(jìn)行 check null 。
下面的示例代碼可以驗(yàn)證這一點(diǎn)
class Program { static void Main(string[] args) { BuildBlogPostLinks(null); BlogPost blogPost = null; BuildBlogPostLinks(blogPost); } public static void BuildBlogPostLinks(params BlogPost[] blogPosts) { if (blogPosts == null) { Console.WriteLine("blogPosts in null"); return; } foreach (var blogPost in blogPosts) { if (blogPost == null) { Console.WriteLine("blogPost in null"); } else { Console.WriteLine("blogpost.Title: " + blogPost.Title); } } } } public class BlogPost { public string Title { get; set; } }
運(yùn)行時(shí)的輸出結(jié)果是
$ dotnet run
blogPosts in null
blogPost in null
總結(jié)
以上就是這篇文章的全部?jī)?nèi)容了,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。