Rumah > Artikel > pembangunan bahagian belakang > Mengapakah Ungkapan Lambda di dalam Foreach Loop menangkap nilai terakhir pembolehubah gelung?
Pertimbangkan kod berikut yang memulakan senarai perwakilan, yang setiap satunya memanggil kaedah SayGreetingToType dengan jenis dan sapaan tertentu:
<code class="csharp">public class MyClass { public delegate string PrintHelloType(string greeting); public void Execute() { Type[] types = new Type[] { typeof(string), typeof(float), typeof(int) }; List<PrintHelloType> helloMethods = new List<PrintHelloType>(); foreach (var type in types) { // Initialize the lambda expression with the captured variable 'type' var sayHello = new PrintHelloType(greeting => SayGreetingToType(type, greeting)); helloMethods.Add(sayHello); } // Call the delegates with the greeting "Hi" foreach (var helloMethod in helloMethods) { Console.WriteLine(helloMethod("Hi")); } } public string SayGreetingToType(Type type, string greetingText) { return greetingText + " " + type.Name; } }</code>
Setelah melaksanakan kod ini, anda menjangkakan untuk melihat:
Hi String Hi Single Hi Int32
Walau bagaimanapun, disebabkan kelakuan penutupan, jenis terakhir dalam tatasusunan jenis, Int32, ditangkap oleh semua lambda ungkapan. Akibatnya, semua perwakilan menggunakan SayGreetingToType dengan jenis yang sama, yang membawa kepada output yang tidak dijangka:
Hi Int32 Hi Int32 Hi Int32
Penyelesaian
Untuk menyelesaikan isu ini, kita perlu untuk menangkap nilai pembolehubah gelung dalam ungkapan lambda dan bukannya pembolehubah itu sendiri:
<code class="csharp">public class MyClass { public delegate string PrintHelloType(string greeting); public void Execute() { Type[] types = new Type[] { typeof(string), typeof(float), typeof(int) }; List<PrintHelloType> helloMethods = new List<PrintHelloType>(); foreach (var type in types) { // Capture a copy of the current 'type' value using a new variable var newType = type; // Initialize the lambda expression with the new variable 'newType' var sayHello = new PrintHelloType(greeting => SayGreetingToType(newType, greeting)); helloMethods.Add(sayHello); } // Call the delegates with the greeting "Hi" foreach (var helloMethod in helloMethods) { Console.WriteLine(helloMethod("Hi")); } } public string SayGreetingToType(Type type, string greetingText) { return greetingText + " " + type.Name; } }</code>
Pengubahsuaian ini memastikan bahawa setiap ungkapan lambda mempunyai salinan jenisnya sendiri, membenarkan ia menggunakan SayGreetingToType dengan yang betul taip hujah.
Atas ialah kandungan terperinci Mengapakah Ungkapan Lambda di dalam Foreach Loop menangkap nilai terakhir pembolehubah gelung?. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!