如果我创建一个名为 myForm 的新表单,myForm.h 的顶部如下所示:
#pragma once
using namespace System;
using namespace System::ComponentModel;
using namespace System::Collections; //<<<< THIS ONE
using namespace System::Windows::Forms;
using namespace System::Data;
using namespace System::Drawing;
这些甚至都不需要,因为出色的表单设计师总是完全限定其对象。
标有 THIS ONE 的那个特别烦人,因为它破坏了我的构建。这是因为我到处都使用 IList 的通用形式——我非常喜欢它,所以我把它放在 stdafx.h 中,如下所示:
using System::Collections::Generic::IList;
因此,如果我想从碰巧使用 IList 的任何其他文件中使用 myForm,如下所示:
#include "StdAfx.h"
#include "ABC.h"
#include "myForm.h"
ABC::ABC()
{
IList<int>^ myList;
...
}
然后它无法编译:
1>.\ABC.cpp(7) : error C2872: 'IList' : ambiguous symbol
1> could be 'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::Generic::IList'
1> or 'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::IList'
1>.\ABC.cpp(7) : error C2872: 'IList' : ambiguous symbol
1> could be 'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::Generic::IList'
1> or 'c:\windows\microsoft.net\framework\v2.0.50727\mscorlib.dll : System::Collections::IList'
那么,我怎样才能阻止新表单添加所有这些无用和破坏性的用途呢?