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


C++ Alloc::construct方法代码示例

本文整理汇总了C++中Alloc::construct方法的典型用法代码示例。如果您正苦于以下问题:C++ Alloc::construct方法的具体用法?C++ Alloc::construct怎么用?C++ Alloc::construct使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Alloc的用法示例。


在下文中一共展示了Alloc::construct方法的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: T

 Array1D(int size, bool init = false, T initValue = T()) :
     mSize(size) {
     Alloc alloc;
     mData = alloc.allocate(mSize);
     if (init) {
         for (int i = 0; i < mSize; ++i) {
             alloc.construct(&mData[i], initValue);
         }
     }
 }
开发者ID:yuchenguangfd,项目名称:Arena,代码行数:10,代码来源:P3624.cpp

示例2: uninitialized_fill_n_with_alloc

inline void uninitialized_fill_n_with_alloc(ForwardIterator first, Diff n, const T& item, Alloc& alloc) {
    ForwardIterator next = first;
    BOOST_TRY {
        for (; n > 0; ++first, --n)
            alloc.construct(first, item);
    } BOOST_CATCH(...) {
        for (; next != first; ++next)
            alloc.destroy(next);
        BOOST_RETHROW
    }
    BOOST_CATCH_END
}
开发者ID:chinjao,项目名称:ros_src,代码行数:12,代码来源:details.hpp

示例3: uninitialized_copy_with_alloc

inline ForwardIterator uninitialized_copy_with_alloc(InputIterator first, InputIterator last, ForwardIterator dest,
    Alloc& alloc) {
    ForwardIterator next = dest;
    BOOST_TRY {
        for (; first != last; ++first, ++dest)
            alloc.construct(dest, *first);
    } BOOST_CATCH(...) {
        for (; next != dest; ++next)
            alloc.destroy(next);
        BOOST_RETHROW
    }
    BOOST_CATCH_END
    return dest;
}
开发者ID:chinjao,项目名称:ros_src,代码行数:14,代码来源:details.hpp

示例4:

__AGENCY_ANNOTATION
typename std::enable_if<
  has_construct<Alloc,typename std::iterator_traits<Iterator>::pointer, Args...>::value,
  Iterator
>::type
  construct_each_impl2(Alloc& a, Iterator first, Iterator last, Args&&... args)
{
  for(; first != last; ++first)
  {
    a.construct(&*first, std::forward<Args>(args)...);
  }

  return first;
} // end construct_each_impl2()
开发者ID:harrism,项目名称:agency,代码行数:14,代码来源:construct_each.hpp

示例5:

 void allocator_traits<Alloc>::construct(Alloc& a, T* p, Args&&... args) {
   a.construct(p, std::forward<Args>(args)...); //TODO: It may not be implemented!
 }
开发者ID:GdelP,项目名称:SimpleSTL,代码行数:3,代码来源:allocator_traits.impl.hpp


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