আমি অ্যাডাম পিয়ার্সের কাছ থেকে আবার কোড পরীক্ষা করার চেষ্টা করেছি এবং আরও দুটি কেস যুক্ত করেছি: ক্লাসে স্ট্যাটিক ভেরিয়েবল এবং পিওডি টাইপ। আমার সংকলকটি উইন্ডোজ ওএসে (মিনিজিডাব্লু -32) জি ++ 4.8.1। ফলাফল ক্লাসে স্থির পরিবর্তনশীল হয় বৈশ্বিক ভেরিয়েবলের সাথে একই আচরণ করা হয়। এর কনস্ট্রাক্টরকে মূল ফাংশনে প্রবেশের আগে ডাকা হবে।
(1) : সঠিক অবস্থা হওয়া উচিত: "একই অনুবাদ ইউনিট থেকে কোনও ফাংশন বলা হওয়ার আগে"। তবে, সাধারণের জন্য যেমন নীচের উদাহরণ হিসাবে, তবে এটি মূল ফাংশন।
<iostream> অন্তর্ভুক্ত করুন
#include < string>
using namespace std;
class test
{
public:
test(const char *name)
: _name(name)
{
cout << _name << " created" << endl;
}
~test()
{
cout << _name << " destroyed" << endl;
}
string _name;
static test t;
};
test test::t("static in class");
test t("global variable");
void f()
{
static test t("static variable");
static int num = 10 ;
test t2("Local variable");
cout << "Function executed" << endl;
}
int main()
{
test t("local to main");
cout << "Program start" << endl;
f();
cout << "Program end" << endl;
return 0;
}
ফলাফল:
static in class created
global variable created
local to main created
Program start
static variable created
Local variable created
Function executed
Local variable destroyed
Program end
local to main destroyed
static variable destroyed
global variable destroyed
static in class destroyed
লিনাক্স এনভিতে কেউ পরীক্ষা করেছে?