接notes 4cout <<ref<<endl; 会输出10test02()=20; //函数返回值的引用作为左值cout <<ref<<endl; //会输出20,因为ref和test02其实都是全局变量a的引用,指向的是同一处内存。