比如说你在全局定义了一个变量str,然后在函数里面又定义了这个str名字的变量的,这个时候你要是在函数里面直接写str,那么就是访问的函数内部的变量的。无法访问外部变量的。
这是正常的现象的。但是如果你想访问外部变量的话,那么就可以使用::str来访问的。就不会是访问内部变量了。
using gg = kk; namespace DXApplication2 { public partial class Form_Button : Form { public Form_Button() { InitializeComponent(); str = "全局字符串"; } public string str; void m_Global() { string str = "字符串"; MessageBox.Show(str); this.str = "df"; gg::djdj dd = new gg::djdj(); } } } namespace kk { public class djdj { } }