winrt::single_threaded_vector 函数模板(C++/WinRT)

一个函数模板,用于创建和返回实现常规用途(但不可观察)集合的类型的对象。 该对象作为 IVector返回,这是调用返回对象的函数和属性的接口。

可以选择将现有 std::vector右值 传递到函数中,要么传递临时对象,也可以对 左值调用 std::move

有关详细信息和代码示例,请参阅使用 C++/WinRT集合。

语法

template <typename T, typename Allocator = std::allocator<T>>
winrt::Windows::Foundation::Collections::IVector<T> single_threaded_vector(std::vector<T, Allocator>&& values = {});

模板参数

typename T 集合元素的类型。

typename Allocator 初始化集合的向量分配器的类型(如果传递一个),否则为默认分配器。

参数

values 右值 类型的可选引用 std::vector,从中初始化集合对象的元素。

返回值

表示新集合对象的 IVector

要求

受支持的最低 SDK: Windows SDK 版本 10.0.17763.0 (Windows 10 版本 1809)

Namespace: winrt

标头: %WindowsSdkDir%Include<WindowsTargetPlatformVersion>\cppwinrt\winrt\base.h (默认包含)

另请参阅