nanxing_defalloc.h 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. #ifndef _DEF_ALLOC_
  2. #define _DEF_ALLOC_ 1
  3. #include<iostream>
  4. #include<cstddef>
  5. #include<new>
  6. #include<climits>
  7. namespace nanxing
  8. {
  9. template<typename T>
  10. constexpr
  11. inline T* _allocate(ptrdiff_t size, T*) noexcept //这个是STL标准的要求,第二个传入的T*没啥用(在实际调用的时候会传入一个空指针)
  12. {
  13. T* temp;
  14. try
  15. {
  16. temp = (T*)(::operator new((size_t)(size * (sizeof(T)))));
  17. }
  18. catch(...)
  19. {
  20. return nullptr; //如果出现失败会直接返回nullptr
  21. }
  22. return temp;
  23. }
  24. //template<typename T1,typename T2>
  25. // inline void _construct(T1* p, const T2& x)
  26. // {
  27. // ::new(p) T1(x); //在p指向空间上调用构造函数
  28. // }
  29. template<typename _Up, typename... _Args>
  30. inline void _construct(_Up* __p, _Args&&... __args) noexcept(std::is_nothrow_constructible<_Up, _Args...>::value)
  31. {
  32. ::new((void *)__p) _Up(std::forward<_Args>(__args)...);
  33. }
  34. template<typename T>
  35. constexpr
  36. inline void _deallocate(T* buffer)
  37. {
  38. ::operator delete(buffer); //释放空间(注意和delete的区别)
  39. }
  40. template<typename T>
  41. constexpr
  42. inline void _destory(T* ptr)
  43. {
  44. ptr->~T(); //调用析构函数
  45. }
  46. template<typename T>
  47. class allocator
  48. {
  49. public:
  50. using value_type = T;
  51. using pointer = T*;
  52. using const_pointer = const T*;
  53. using reference = T&;
  54. using size_type = size_t;
  55. using difference_type = ptrdiff_t;
  56. using const_reference = const T&;
  57. constexpr allocator() noexcept
  58. {
  59. //std::cout<<"hello"<<std::endl;
  60. }
  61. template<typename U> struct rebind
  62. {
  63. using other = allocator<U>;
  64. };
  65. constexpr pointer allocate(size_type n, const void* hint = 0) //注意这个函数是会抛出一个std::bad_alloc异常
  66. {
  67. return _allocate((difference_type)n, (pointer)0);
  68. }
  69. template<typename... _Args>
  70. void construct(pointer __p, _Args&&... __args) noexcept
  71. {
  72. _construct(__p,std::forward<_Args>(__args)...);
  73. //::new((void *)__p) _Up(std::forward<_Args>(__args)...);
  74. }
  75. // template<pointer,typename T2>
  76. // void construct(pointer p,const T2& data )noexcept //唯一参数版本
  77. // {
  78. // _construct(p,data);
  79. // }
  80. constexpr void deallocate(pointer p, size_type n=0)
  81. {
  82. _deallocate(p);
  83. }
  84. constexpr void destory(pointer p)
  85. {
  86. _destory(p);
  87. }
  88. constexpr pointer address(reference x)
  89. {
  90. return (pointer)&x;
  91. }
  92. constexpr const_pointer address(const_reference x)
  93. {
  94. return (const_pointer)&x;
  95. }
  96. constexpr size_type max_size()const
  97. {
  98. return size_type(UINT_MAX / sizeof(T));
  99. }
  100. };
  101. }
  102. #endif