首頁 >後端開發 >C++ >如何在 C# 中將字串的第一個字母大寫並獲得最佳效能?

如何在 C# 中將字串的第一個字母大寫並獲得最佳效能?

Susan Sarandon
Susan Sarandon原創
2025-01-16 13:44:00547瀏覽

How Can I Capitalize the First Letter of a String in C# with Optimal Performance?

高效實現C#字串首字母大寫

引言

將字串的首字母大寫是許多程式應用中的常見任務。為了優化性能,選擇高效的方法至關重要。本文探討了在C#中實現首字母大寫功能的幾種方法,並著重分析了它們的表現差異。

程式碼範例

C# 8,.NET Core 3.0 或 .NET Standard 2.1

<code class="language-csharp">public static string FirstCharToUpper(this string input) =>
    input switch
    {
        null => throw new ArgumentNullException(nameof(input)),
        "" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)),
        _ => string.Concat(input[0].ToString().ToUpper(), input.AsSpan(1))
    };</code>

C# 8

<code class="language-csharp">public static string FirstCharToUpper(this string input) =>
    input switch
    {
        null => throw new ArgumentNullException(nameof(input)),
        "" => throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input)),
        _ => input[0].ToString().ToUpper() + input.Substring(1)
    };</code>

C# 7

<code class="language-csharp">public static string FirstCharToUpper(this string input)
{
    switch (input)
    {
        case null: throw new ArgumentNullException(nameof(input));
        case "": throw new ArgumentException($"{nameof(input)} cannot be empty", nameof(input));
        default: return input[0].ToString().ToUpper() + input.Substring(1);
    }
}</code>

舊版 (不推薦,效能較差)

<code class="language-csharp">public static string FirstCharToUpper(string input)
{
    if (String.IsNullOrEmpty(input))
        throw new ArgumentException("ARGH!");
    return input.First().ToString().ToUpper() + String.Join("", input.Skip(1));
}</code>
<code class="language-csharp">public static string FirstCharToUpper(string input)
{
    if (String.IsNullOrEmpty(input))
        throw new ArgumentException("ARGH!");
    return input.First().ToString().ToUpper() + input.Substring(1);
}</code>

性能考量

在這些程式碼片段中,記憶體分配最少且字串操作效率最高的方法具有最佳效能。第一個解決方案使用了 .NET Core 3.0 或 .NET Standard 2.1 中的 ReadonlySpan<char>,與其他方法相比,它提供了更優越的效能。

以上是如何在 C# 中將字串的第一個字母大寫並獲得最佳效能?的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn