C# 字元串拼接性能探索

来源:https://www.cnblogs.com/ryzblog76/archive/2018/03/05/8492633.html
-Advertisement-
Play Games

本文通過ANTS Memory Profiler工具探索c#中+、string.Concat、string.Format、StringBuilder.Append四種方式進行字元串拼接時的性能。 本文涉及程式為.NET Core 2.0控制台應用程式。 一、常量字元串拼接 private stati ...


本文通過ANTS Memory Profiler工具探索c#中+、string.Concat、string.Format、StringBuilder.Append四種方式進行字元串拼接時的性能。

本文涉及程式為.NET Core 2.0控制台應用程式。

 

一、常量字元串拼接

 

private static void TestPerformance(Action action, int times)
        {
            Stopwatch sw = new Stopwatch();
            sw.Start();
            for(int i = 0; i < times; i++)
            {
                action();
            }
            sw.Stop();
            Console.WriteLine(action.Method.Name + ", FullTime: " + sw.ElapsedMilliseconds);
        }
常量字元串測試方法

 

1.+方法

1.1連續拼接

private static void AddTest()
        {
            string s = string.Empty;
            s = "1" + "2" + "3" + "4" + "5" + "6" + "7" + "8";
        }
+連續拼接常量字元串

運行時間:

 記憶體情況:

IL代碼:

.method private hidebysig static void  AddTest() cil managed
{
  // Code size       7 (0x7)
  .maxstack  8
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  pop
  IL_0006:  ret
} // end of method Program::AddTest

 

1.2分段拼接

private static void AddWithParamTest2()
        {
            string s = string.Empty;
            s += "1";
            s += "2";
            s += "3";
            s += "4";
            s += "5";
            s += "6";
            s += "7";
            s += "8";
        }
分段拼接常量字元串

運行時間:

記憶體情況:

IL代碼:

.method private hidebysig static void  AddWithParamTest2() cil managed
{
  // Code size       87 (0x57)
  .maxstack  2
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  ldstr      "1"
  IL_000a:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_000f:  ldstr      "2"
  IL_0014:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0019:  ldstr      "3"
  IL_001e:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0023:  ldstr      "4"
  IL_0028:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_002d:  ldstr      "5"
  IL_0032:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0037:  ldstr      "6"
  IL_003c:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0041:  ldstr      "7"
  IL_0046:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_004b:  ldstr      "8"
  IL_0050:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0055:  pop
  IL_0056:  ret
} // end of method Program::AddWithParamTest2

 

通過IL代碼可以看出,分段的+=代碼調用的是Concat方法,並且比連續的+多開闢了許多記憶體空間。

2.Concat方法

2.1分次Concat

private static void ConcatTest()
        {
            string s = string.Empty;
            s = string.Concat(s, "1");
            s = string.Concat(s, "2");
            s = string.Concat(s, "3");
            s = string.Concat(s, "4");
            s = string.Concat(s, "5");
            s = string.Concat(s, "6");
            s = string.Concat(s, "7");
            s = string.Concat(s, "8");
        }
分次Concat常量字元串

IL代碼:

.method private hidebysig static void  AddWithParamTest2() cil managed
{
  // Code size       87 (0x57)
  .maxstack  2
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  ldstr      "1"
  IL_000a:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_000f:  ldstr      "2"
  IL_0014:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0019:  ldstr      "3"
  IL_001e:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0023:  ldstr      "4"
  IL_0028:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_002d:  ldstr      "5"
  IL_0032:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0037:  ldstr      "6"
  IL_003c:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0041:  ldstr      "7"
  IL_0046:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_004b:  ldstr      "8"
  IL_0050:  call       string [System.Runtime]System.String::Concat(string,
                                                                    string)
  IL_0055:  pop
  IL_0056:  ret
} // end of method Program::AddWithParamTest2

可見IL代碼與+分段拼接常量字元串相同,性能相似。

2.2Concat一次拼接常量字元串

private static void ConcatTest2()
        {
            string s = string.Empty;
            string.Concat(s, "1", "2", "3", "4", "5", "6", "7", "8");           
        }
Concat一次拼接常量字元串

運行時間:

記憶體情況:

IL代碼:

.method private hidebysig static void  ConcatTest2() cil managed
{
  // Code size       88 (0x58)
  .maxstack  4
  .locals init (string V_0)
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  stloc.0
  IL_0006:  ldc.i4.s   9
  IL_0008:  newarr     [System.Runtime]System.String
  IL_000d:  dup
  IL_000e:  ldc.i4.0
  IL_000f:  ldloc.0
  IL_0010:  stelem.ref
  IL_0011:  dup
  IL_0012:  ldc.i4.1
  IL_0013:  ldstr      "1"
  IL_0018:  stelem.ref
  IL_0019:  dup
  IL_001a:  ldc.i4.2
  IL_001b:  ldstr      "2"
  IL_0020:  stelem.ref
  IL_0021:  dup
  IL_0022:  ldc.i4.3
  IL_0023:  ldstr      "3"
  IL_0028:  stelem.ref
  IL_0029:  dup
  IL_002a:  ldc.i4.4
  IL_002b:  ldstr      "4"
  IL_0030:  stelem.ref
  IL_0031:  dup
  IL_0032:  ldc.i4.5
  IL_0033:  ldstr      "5"
  IL_0038:  stelem.ref
  IL_0039:  dup
  IL_003a:  ldc.i4.6
  IL_003b:  ldstr      "6"
  IL_0040:  stelem.ref
  IL_0041:  dup
  IL_0042:  ldc.i4.7
  IL_0043:  ldstr      "7"
  IL_0048:  stelem.ref
  IL_0049:  dup
  IL_004a:  ldc.i4.8
  IL_004b:  ldstr      "8"
  IL_0050:  stelem.ref
  IL_0051:  call       string [System.Runtime]System.String::Concat(string[])
IL_0056: stloc.0
IL_0057: ret

} // end of method Program::ConcatTest2

通過IL代碼可以看出,string.Concat(s, s1, s2, s3)並不調用String.Concat方法,而是直接在堆棧上進行操作。因為需要局部變數來標記,比分次調用Concat方法所占的記憶體要多一些。

3.Format方法

3.1一次Format

private static void FormatTest()
        {
            string s = string.Empty;
            s = string.Format("{0}{1}{2}{3}{4}{5}{6}{7}", "1", "2", "3", "4", "5", "6", "7", "8");
        }
Format常量字元串拼接

運行時間:

記憶體情況:

IL代碼:

.method private hidebysig static void  FormatTest() cil managed
{
  // Code size       88 (0x58)
  .maxstack  5
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  pop
  IL_0006:  ldstr      "{0}{1}{2}{3}{4}{5}{6}{7}"
  IL_000b:  ldc.i4.8
  IL_000c:  newarr     [System.Runtime]System.Object
  IL_0011:  dup
  IL_0012:  ldc.i4.0
  IL_0013:  ldstr      "1"
  IL_0018:  stelem.ref
  IL_0019:  dup
  IL_001a:  ldc.i4.1
  IL_001b:  ldstr      "2"
  IL_0020:  stelem.ref
  IL_0021:  dup
  IL_0022:  ldc.i4.2
  IL_0023:  ldstr      "3"
  IL_0028:  stelem.ref
  IL_0029:  dup
  IL_002a:  ldc.i4.3
  IL_002b:  ldstr      "4"
  IL_0030:  stelem.ref
  IL_0031:  dup
  IL_0032:  ldc.i4.4
  IL_0033:  ldstr      "5"
  IL_0038:  stelem.ref
  IL_0039:  dup
  IL_003a:  ldc.i4.5
  IL_003b:  ldstr      "6"
  IL_0040:  stelem.ref
  IL_0041:  dup
  IL_0042:  ldc.i4.6
  IL_0043:  ldstr      "7"
  IL_0048:  stelem.ref
  IL_0049:  dup
  IL_004a:  ldc.i4.7
  IL_004b:  ldstr      "8"
  IL_0050:  stelem.ref
  IL_0051:  call       string [System.Runtime]System.String::Format(string,
                                                                    object[])
  IL_0056:  pop
  IL_0057:  ret
} // end of method Program::FormatTest

StringFormat方法雖然是基於StringBuilder,但由於需要遍歷字元串來識別占位符,所以比較慢。

3.2Format分次拼接

private static void FormatTest2()
        {
            string s = string.Empty;
            s = string.Format("{0}{1}", s, "1");
            s = string.Format("{0}{1}", s, "2");
            s = string.Format("{0}{1}", s, "3");
            s = string.Format("{0}{1}", s, "4");
            s = string.Format("{0}{1}", s, "5");
            s = string.Format("{0}{1}", s, "6");
            s = string.Format("{0}{1}", s, "7");
            s = string.Format("{0}{1}", s, "8");
        }
Format分次拼接常量字元串

運行時間:

記憶體情況:

IL代碼:

.method private hidebysig static void  FormatTest2() cil managed
{
  // Code size       143 (0x8f)
  .maxstack  3
  .locals init (string V_0)
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  stloc.0
  IL_0006:  ldstr      "{0}{1}"
  IL_000b:  ldloc.0
  IL_000c:  ldstr      "1"
  IL_0011:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_0016:  stloc.0
  IL_0017:  ldstr      "{0}{1}"
  IL_001c:  ldloc.0
  IL_001d:  ldstr      "2"
  IL_0022:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_0027:  stloc.0
  IL_0028:  ldstr      "{0}{1}"
  IL_002d:  ldloc.0
  IL_002e:  ldstr      "3"
  IL_0033:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_0038:  stloc.0
  IL_0039:  ldstr      "{0}{1}"
  IL_003e:  ldloc.0
  IL_003f:  ldstr      "4"
  IL_0044:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_0049:  stloc.0
  IL_004a:  ldstr      "{0}{1}"
  IL_004f:  ldloc.0
  IL_0050:  ldstr      "5"
  IL_0055:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_005a:  stloc.0
  IL_005b:  ldstr      "{0}{1}"
  IL_0060:  ldloc.0
  IL_0061:  ldstr      "6"
  IL_0066:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_006b:  stloc.0
  IL_006c:  ldstr      "{0}{1}"
  IL_0071:  ldloc.0
  IL_0072:  ldstr      "7"
  IL_0077:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_007c:  stloc.0
  IL_007d:  ldstr      "{0}{1}"
  IL_0082:  ldloc.0
  IL_0083:  ldstr      "8"
  IL_0088:  call       string [System.Runtime]System.String::Format(string,
                                                                    object,
                                                                    object)
  IL_008d:  stloc.0
  IL_008e:  ret
} // end of method Program::FormatTest2

分次使用Format方法拼接字元串,即分次調用Format方法,多次迴圈遍歷字元串,耗時更長。

4.StringBuilder方法

private static void BuilderTest()
        {
            StringBuilder sb = new StringBuilder();
            sb.Append("1");
            sb.Append("2");
            sb.Append("3");
            sb.Append("4");
            sb.Append("5");
            sb.Append("6");
            sb.Append("7");
            sb.Append("8");
        }
Builder拼接常量字元串

運行時間:

記憶體情況:

IL代碼:

.method private hidebysig static void  BuilderTest() cil managed
{
  // Code size       101 (0x65)
  .maxstack  3
  IL_0000:  newobj     instance void [System.Runtime]System.Text.StringBuilder::.ctor()
  IL_0005:  dup
  IL_0006:  ldstr      "1"
  IL_000b:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_0010:  pop
  IL_0011:  dup
  IL_0012:  ldstr      "2"
  IL_0017:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_001c:  pop
  IL_001d:  dup
  IL_001e:  ldstr      "3"
  IL_0023:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_0028:  pop
  IL_0029:  dup
  IL_002a:  ldstr      "4"
  IL_002f:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_0034:  pop
  IL_0035:  dup
  IL_0036:  ldstr      "5"
  IL_003b:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_0040:  pop
  IL_0041:  dup
  IL_0042:  ldstr      "6"
  IL_0047:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_004c:  pop
  IL_004d:  dup
  IL_004e:  ldstr      "7"
  IL_0053:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_0058:  pop
  IL_0059:  ldstr      "8"
  IL_005e:  callvirt   instance class [System.Runtime]System.Text.StringBuilder [System.Runtime]System.Text.StringBuilder::Append(string)
  IL_0063:  pop
  IL_0064:  ret
} // end of method Program::BuilderTest

 在短字元串大量拼接的測試中,可以看出一次使用+進行拼接所耗記憶體最少,所用時間最短。其餘方式所耗記憶體相差不大,但StringBuilder所耗時間明顯較短。

 由於Format方法內部存在對字元串的遍歷,可以推測,隨著字元串的長度變長,Format方法所耗時間將會增加。

二、字元串變數拼接(多次迴圈拼接)

private static void TestPerformanceWithParam<T>(Action<T> action, T t, int times)
        {
            Stopwatch sw = new Stopwatch();
            sw.Start();
            for (int i = 0; i < times; i++)
            {
                action(t);
            }
            sw.Stop();
            Console.WriteLine(action.Method.Name + ", FullTime: " + sw.ElapsedMilliseconds);
        }
變數字元串測試方法

1.+方法

1.1連續拼接

private static void AddTest(string t)
        {
            string s = string.Empty;
            s = t + t + t + t + t + t + t + t;
        }
Plus字元串變數連續拼接

運行時間:

 記憶體情況:

IL代碼:

.method private hidebysig static void  AddTest(string t) cil managed
{
  // Code size       51 (0x33)
  .maxstack  8
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  pop
  IL_0006:  ldc.i4.8
  IL_0007:  newarr     [System.Runtime]System.String
  IL_000c:  dup
  IL_000d:  ldc.i4.0
  IL_000e:  ldarg.0
  IL_000f:  stelem.ref
  IL_0010:  dup
  IL_0011:  ldc.i4.1
  IL_0012:  ldarg.0
  IL_0013:  stelem.ref
  IL_0014:  dup
  IL_0015:  ldc.i4.2
  IL_0016:  ldarg.0
  IL_0017:  stelem.ref
  IL_0018:  dup
  IL_0019:  ldc.i4.3
  IL_001a:  ldarg.0
  IL_001b:  stelem.ref
  IL_001c:  dup
  IL_001d:  ldc.i4.4
  IL_001e:  ldarg.0
  IL_001f:  stelem.ref
  IL_0020:  dup
  IL_0021:  ldc.i4.5
  IL_0022:  ldarg.0
  IL_0023:  stelem.ref
  IL_0024:  dup
  IL_0025:  ldc.i4.6
  IL_0026:  ldarg.0
  IL_0027:  stelem.ref
  IL_0028:  dup
  IL_0029:  ldc.i4.7
  IL_002a:  ldarg.0
  IL_002b:  stelem.ref
  IL_002c:  call       string [System.Runtime]System.String::Concat(string[])
  IL_0031:  pop
  IL_0032:  ret
} // end of method Program::AddTest
Plus字元串變數拼接IL

從IL代碼可見,在使用+連續拼接字元串變數時,內部調用了String.Concat(string[])方法。

1.2分段拼接

private static void AddWithParamTest2(string t)
        {
            string s = string.Empty;
            s += t;
            s += t;
            s += t;
            s += t;
            s += t;
            s += t;
            s += t;
            s += t;
        }
Plus字元串變數拼接分段

運行時間:

記憶體情況:

IL代碼:

.method private hidebysig static void  AddWithParamTest2(string t) cil managed
{
  // Code size       55 (0x37)
  .maxstack  8
  IL_0000:  ldsfld     string [System.Runtime]System.String::Empty
  IL_0005:  ldarg.0
  IL_00

您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 通過pycharm安裝selenium 1.配置好python和pycharm,打開pycharm,點擊左上角的File->Setting->Project Interpreter,點擊右側的添加按鈕 2.在新彈出的視窗中輸入selenium,選擇selenium,點擊左下角的install pac ...
  • #include #include #include using namespace std; const int MAX=1005; int main() { int x[MAX]={0},y[MAX]={0},z[2*MAX+1]={0}; string a,b; cin>>a>>b; reve... ...
  • 棧 1.定義:棧是限定僅在表尾進行插入或刪除操作的線性表。因此,對棧來說,表尾端有其特殊含義,稱為棧頂,相應地, 表頭端稱為棧底。不含元素的空表稱為空棧。 假設棧S=(a1,a2,a3,...,an),則稱a1為棧底元素,an為棧頂元素。棧中元素按a1,a2,a3,...,an的次序進棧,退棧的第 ...
  • 一、反射 1、反射概念 JAVA反射機制是在運行狀態中,對於任意一個類,都能夠知道這個類的所有屬性和方法;對於任意一個對象,都能夠調用它的任意一個方法和屬性;這種動態獲取的信息以及動態調用對象的方法的功能稱為java語言的反射機制。 要想解剖一個類,必須先要獲取到該類的位元組碼文件對象。而解剖使用的就 ...
  • 1. 方法思路: 使用數據字典【Dictionary<string, string>】,聲明一個list集合,將“XML子節點名稱”、“節點值”以鍵【節點名稱】值【節點值】對的形式存入此集合,然後將此集合作為參數傳入封裝的公共方法中即可; 2. 公共方法: 3. 對公共方法的調用: 4. 整體的完整 ...
  • 在Task運行過程中,我們可以通過.Net 4中的內置方法來取消Task的運行。 創建一個可取消的Task需要用到下麵的一些對象: 1.System.Threading.CancellationTokenSource實例 2.通過CancellationTokenSource.Token屬性獲得一個 ...
  • pageSize:表示每頁有多少條數據pageNum:表示頁數,正確表達式pageNum+1。pageNum=0,是第一頁。pageNum=1,是第二頁。Skip:表示從pageNum* pageSize+1條開始算,原來就有pageNum* pageSize條數據Take:等於pageSize的值 ...
  • 實例產品基於asp.net mvc 5.0框架,源碼下載地址:http://www.jinhusns.com/Products/Download 在設計時,如果能夠預測到一些實體可能在後續的研發(或二次開發)中增加一些屬性,為了能夠快速增、減這類屬性,提供了可序列化屬性的設計機制。可序列化屬性具有以 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...