当前位置: 首页>>代码示例>>C++>>正文


C++ StringCollection::end方法代码示例

本文整理汇总了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"));
}
开发者ID:killbug2004,项目名称:WSProf,代码行数:15,代码来源:TestDirectory.cpp

示例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); });
        }
开发者ID:vturecek,项目名称:Service-Fabric,代码行数:7,代码来源:FileConfigStore.Test.cpp

示例3: CheckStringCollectionsEquality

 static void CheckStringCollectionsEquality(StringCollection & coll1, StringCollection & coll2)
 {
     sort(coll1.begin(), coll1.end());
     sort(coll2.begin(), coll2.end());
     BOOST_REQUIRE(coll1 == coll2);
 }
开发者ID:vturecek,项目名称:Service-Fabric,代码行数:6,代码来源:FileConfigStore.Test.cpp

示例4:

		StringCollection::StringCollection(const StringCollection &sc){
#ifdef USE_EMBEDDED_CLASSNAMES
			setClassName(__xvr2_Util_StringCollection);
#endif
			insert(begin(), sc.begin(), sc.end());
		}
开发者ID:coredumped,项目名称:X-VR2,代码行数:6,代码来源:StringCollection.cpp


注:本文中的StringCollection::end方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。