this
লক স্টেটমেন্টগুলিতে এটি ব্যবহার করা খারাপ ফর্ম কারণ এটি সাধারণত আপনার নিয়ন্ত্রণের বাইরে থাকে এবং অন্য কেউ সেই জিনিসটিতে লক করছেন।
সমান্তরাল ক্রিয়াকলাপের যথাযথ পরিকল্পনা করার জন্য, সম্ভাব্য অচলাবস্থার পরিস্থিতি বিবেচনা করার জন্য বিশেষভাবে যত্ন নেওয়া উচিত এবং অজানা সংখ্যক লক এন্ট্রি পয়েন্টগুলি এতে বাধা সৃষ্টি করে। উদাহরণস্বরূপ, কোনও অবজেক্টের রেফারেন্স সহ যে কেউ অবজেক্ট ডিজাইনার / স্রষ্টাকে সম্পর্কে জেনেও এটি লক করতে পারে। এটি বহু-থ্রেডযুক্ত সমাধানগুলির জটিলতা বৃদ্ধি করে এবং তাদের সঠিকতাটিকে প্রভাবিত করতে পারে।
একটি ব্যক্তিগত ক্ষেত্রটি সাধারণত আরও ভাল বিকল্প হয় কারণ সংকলক এতে অ্যাক্সেস সীমাবদ্ধতা প্রয়োগ করে এবং এটি লকিংয়ের ব্যবস্থাটি সজ্জিত করে। ব্যবহার this
জনসাধারণের জন্য আপনার লক বাস্তবায়নের অংশ প্রকাশক দ্বারা এনক্যাপস্যুলেশন লঙ্ঘন করে। এটি কোনও স্পষ্ট নয় যে this
ডকুমেন্টটি না থাকলে আপনি কোনও লকটি অর্জন করবেন । তারপরেও কোনও সমস্যা রোধ করতে ডকুমেন্টেশনের উপর নির্ভর করা উপ-অনুকূল is
অবশেষে, এমন সাধারণ ভুল ধারণা রয়েছে যা lock(this)
আসলে প্যারামিটার হিসাবে পাস করা বস্তুকে সংশোধন করে এবং কোনও উপায়ে এটি কেবল পঠনযোগ্য বা অ্যাক্সেসযোগ্য করে তোলে। এটা মিথ্যা । lock
নিছক একটি কী হিসাবে পরিবেশন করার জন্য পরামিতি হিসাবে অবজেক্টটি পাস করেছে । যদি ইতিমধ্যে সেই কীটিতে কোনও লক ধরে রাখা থাকে তবে লকটি তৈরি করা যায় না; অন্যথায়, লক অনুমোদিত।
এ কারণেই lock
স্টেটমেন্টগুলিতে কীগুলি হিসাবে স্ট্রিংগুলি ব্যবহার করা খারাপ , কারণ সেগুলি পরিবর্তনযোগ্য এবং অ্যাপ্লিকেশনটির বিভিন্ন অংশে ভাগ / অ্যাক্সেসযোগ্য। পরিবর্তে আপনার একটি ব্যক্তিগত ভেরিয়েবল ব্যবহার করা উচিত, একটি Object
উদাহরণ সুন্দরভাবে করবে।
উদাহরণস্বরূপ নিম্নলিখিত সি # কোডটি চালান।
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'.