[ create a new paste ] login | about

Link: http://codepad.org/XtbKWTU0    [ raw code | output | fork ]

C++, pasted on Apr 3:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <iostream>
using namespace std;

struct noisy
{
	noisy()  { cout << "noisy()"  << endl; }
	~noisy() { cout << "~noisy()" << endl; }
};

noisy & get_noisy()
{
	static noisy *_ = new noisy;
	return *_;
}

noisy &noisy_ref = get_noisy();

int main()
{}


Output:
1
noisy()


Create a new paste based on this one


Comments: