collection_adapter::reference (STL/CLR)
項目之參考型別。
typedef value_type% reference;
備註
型別描述項目的參考。
範例
// cliext_collection_adapter_reference.cpp
// compile with: /clr
#include <cliext/adapter>
#include <cliext/deque>
typedef cliext::collection_adapter<
System::Collections::ICollection> Mycoll;
int main()
{
cliext::deque<wchar_t> d1;
d1.push_back(L'a');
d1.push_back(L'b');
d1.push_back(L'c');
Mycoll c1(%d1);
// display initial contents " a b c"
Mycoll::iterator it = c1.begin();
for (; it != c1.end(); ++it)
{ // get a reference to an element
Mycoll::reference ref = *it;
System::Console::Write(" {0}", ref);
}
System::Console::WriteLine();
return (0);
}
需求
標頭: < cliext/介面卡 >
Namespace: cliext