यह this
लॉक स्टेटमेंट में उपयोग करने के लिए खराब रूप है क्योंकि यह आम तौर पर आपके नियंत्रण से बाहर है जो उस वस्तु पर लॉक हो सकता है।
समानांतर संचालन की सही योजना बनाने के लिए, संभावित गतिरोध स्थितियों पर विचार करने के लिए विशेष ध्यान रखा जाना चाहिए, और अज्ञात संख्या में लॉक एंट्री पॉइंट होने से इसमें बाधा उत्पन्न होती है। उदाहरण के लिए, वस्तु के संदर्भ वाला कोई भी व्यक्ति उस वस्तु डिजाइनर / निर्माता के बारे में जाने बिना उस पर ताला लगा सकता है। यह बहु-थ्रेडेड समाधानों की जटिलता को बढ़ाता है और उनकी शुद्धता को प्रभावित कर सकता है।
एक निजी क्षेत्र आमतौर पर एक बेहतर विकल्प होता है क्योंकि कंपाइलर इसके लिए एक्सेस प्रतिबंध लागू करेगा, और यह लॉकिंग तंत्र को अतिक्रमण करेगा। this
अपने लॉकिंग कार्यान्वयन के भाग को जनता के सामने लाने से उल्लंघन का उपयोग करना । यह भी स्पष्ट नहीं है कि this
जब तक यह दस्तावेज नहीं किया गया है, तब तक आप एक ताला प्राप्त करेंगे । फिर भी, किसी समस्या को रोकने के लिए प्रलेखन पर निर्भर होना उप-इष्टतम है।
अंत में, आम गलतफहमी है कि lock(this)
वास्तव में पारित वस्तु को एक पैरामीटर के रूप में संशोधित किया जाता है, और किसी तरह से यह केवल पढ़ने योग्य या अप्राप्य बनाता है। यह झूठा है । lock
केवल एक कुंजी के रूप में कार्य करने के लिए पैरामीटर के रूप में पारित वस्तु । यदि उस ताले पर पहले से ही ताला लगा है, तो ताला नहीं बनाया जा सकता है; अन्यथा, लॉक की अनुमति है।
यही कारण है कि lock
स्टेटमेंट में कुंजियों के रूप में स्ट्रिंग का उपयोग करना बुरा है , क्योंकि वे अपरिवर्तनीय हैं और आवेदन के कुछ हिस्सों में साझा / सुलभ हैं। आपको इसके बजाय एक निजी चर का उपयोग करना चाहिए, एक Object
उदाहरण अच्छी तरह से करेगा।
उदाहरण के रूप में निम्न C # कोड चलाएँ।
public class Person
{
public int Age { get; set; }
public string Name { get; set; }
public void LockThis()
{
lock (this)
{
System.Threading.Thread.Sleep(10000);
}
}
}
class Program
{
static void Main(string[] args)
{
var nancy = new Person {Name = "Nancy Drew", Age = 15};
var a = new Thread(nancy.LockThis);
a.Start();
var b = new Thread(Timewarp);
b.Start(nancy);
Thread.Sleep(10);
var anotherNancy = new Person { Name = "Nancy Drew", Age = 50 };
var c = new Thread(NameChange);
c.Start(anotherNancy);
a.Join();
Console.ReadLine();
}
static void Timewarp(object subject)
{
var person = subject as Person;
if (person == null) throw new ArgumentNullException("subject");
// A lock does not make the object read-only.
lock (person.Name)
{
while (person.Age <= 23)
{
// There will be a lock on 'person' due to the LockThis method running in another thread
if (Monitor.TryEnter(person, 10) == false)
{
Console.WriteLine("'this' person is locked!");
}
else Monitor.Exit(person);
person.Age++;
if(person.Age == 18)
{
// Changing the 'person.Name' value doesn't change the lock...
person.Name = "Nancy Smith";
}
Console.WriteLine("{0} is {1} years old.", person.Name, person.Age);
}
}
}
static void NameChange(object subject)
{
var person = subject as Person;
if (person == null) throw new ArgumentNullException("subject");
// You should avoid locking on strings, since they are immutable.
if (Monitor.TryEnter(person.Name, 30) == false)
{
Console.WriteLine("Failed to obtain lock on 50 year old Nancy, because Timewarp(object) locked on string \"Nancy Drew\".");
}
else Monitor.Exit(person.Name);
if (Monitor.TryEnter("Nancy Drew", 30) == false)
{
Console.WriteLine("Failed to obtain lock using 'Nancy Drew' literal, locked by 'person.Name' since both are the same object thanks to inlining!");
}
else Monitor.Exit("Nancy Drew");
if (Monitor.TryEnter(person.Name, 10000))
{
string oldName = person.Name;
person.Name = "Nancy Callahan";
Console.WriteLine("Name changed from '{0}' to '{1}'.", oldName, person.Name);
}
else Monitor.Exit(person.Name);
}
}
कंसोल आउटपुट
'this' person is locked!
Nancy Drew is 16 years old.
'this' person is locked!
Nancy Drew is 17 years old.
Failed to obtain lock on 50 year old Nancy, because Timewarp(object) locked on string "Nancy Drew".
'this' person is locked!
Nancy Smith is 18 years old.
'this' person is locked!
Nancy Smith is 19 years old.
'this' person is locked!
Nancy Smith is 20 years old.
Failed to obtain lock using 'Nancy Drew' literal, locked by 'person.Name' since both are the same object thanks to inlining!
'this' person is locked!
Nancy Smith is 21 years old.
'this' person is locked!
Nancy Smith is 22 years old.
'this' person is locked!
Nancy Smith is 23 years old.
'this' person is locked!
Nancy Smith is 24 years old.
Name changed from 'Nancy Drew' to 'Nancy Callahan'.