本文整理汇总了C++中StringCollection::end方法的典型用法代码示例。如果您正苦于以下问题:C++ StringCollection::end方法的具体用法?C++ StringCollection::end怎么用?C++ StringCollection::end使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类StringCollection
的用法示例。
在下文中一共展示了StringCollection::end方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: TestGetFilesWithMask
void TestDirectory::TestGetFilesWithMask()
{
typedef std::vector<std::tstring> StringCollection;
StringCollection fileNames = Workshare::System::IO::Directory::GetFiles(TEST_FOLDER + _T("\\TestGetFiles"), _T("*.doc"));
assertEquals(2, (long)fileNames.size());
// make all fileNames lowercase, so we can find them.
std::for_each(fileNames.begin(), fileNames.end(), MakeFileNameLowerCase);
StringCollection::iterator fileName = std::find(fileNames.begin(), fileNames.end(), tolower(TEST_FOLDER + _T("\\testgetfiles\\filea.doc")));
assertMessage(fileName != fileNames.end(), _T("Expected to find [") + TEST_FOLDER + _T("\\testgetfiles\\filea.doc] in the returned list"));
fileName = std::find(fileNames.begin(), fileNames.end(), tolower(TEST_FOLDER + _T("\\testgetfiles\\fileb.doc")));
assertMessage(fileName != fileNames.end(), _T("Expected to find [") + TEST_FOLDER + _T("\\testgetfiles\\fileb.doc] in the returned list"));
}
示例2: PrintStringCollection
// namespace
// {
static void PrintStringCollection(StringCollection const & coll, wstring const & header)
{
Trace.WriteInfo(TraceType, "{0}:", header);
for_each(coll.begin(), coll.end(), [](wstring const & elem) { Trace.WriteInfo(TraceType, "\t\"{0}\"", elem); });
}
示例3: CheckStringCollectionsEquality
static void CheckStringCollectionsEquality(StringCollection & coll1, StringCollection & coll2)
{
sort(coll1.begin(), coll1.end());
sort(coll2.begin(), coll2.end());
BOOST_REQUIRE(coll1 == coll2);
}
示例4:
StringCollection::StringCollection(const StringCollection &sc){
#ifdef USE_EMBEDDED_CLASSNAMES
setClassName(__xvr2_Util_StringCollection);
#endif
insert(begin(), sc.begin(), sc.end());
}