зеркало из
				https://github.com/iharh/notes.git
				synced 2025-11-03 23:26:09 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			10 строки
		
	
	
		
			245 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			10 строки
		
	
	
		
			245 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
refs and c-tors (const T *  is important to use const)
 | 
						|
https://herbsutter.com/2008/01/01/gotw-88-a-candidate-for-the-most-important-const/
 | 
						|
 | 
						|
string f() { return "abc"; }
 | 
						|
 | 
						|
void g() {
 | 
						|
string &s = f();       // still legal?
 | 
						|
    cout << s << endl;
 | 
						|
}
 |