STL memory.cpp

memory.cpp
# // Filename:    memory
#
# // Comment By:  凝霜
# // E-mail:      [email protected]
# // Blog:        http://blog.csdn.net/mdl13412
#
# // 智能指针在STL中只有一个auto_ptr, 用于对原生指针的生命周期进行管理,
# // 但是其本身有许多另其不安全的特性, 例如以一个auto_ptr去构造另一个
# // auto_ptr会导致对象所有权的转移, 另外如果两个只能指针同时指向一个
# // 原声指针就可能导致指针被意外的提前释放, 另一个auto_ptr对其解引用时,
# // 就会导致错误
# //
# // C++0x已经通过了::Boost::scoped_ptr的决案, 所以任何使用auto_ptr的
# // 情景都应该使用scoped_ptr替代, 因为其更安全, 但是仍然不能解决多个
# // 智能指针同时拥有一个对象导致的提前释放问题, 要解决这个问题, 请使用
# // ::Boost::shared_ptr
#
# // 我博客中还有一个我实现的auto_ptr, 大家可以参考
# // http://blog.csdn.net/mdl13412/article/details/6244631
#
# /*
#  * Copyright (c) 1997
#  * Silicon Graphics Computer Systems, Inc.
#  *
#  * Permission to use, copy, modify, distribute and sell this software
#  * and its documentation for any purpose is hereby granted without fee,
#  * provided that the above copyright notice appear in all copies and
#  * that both that copyright notice and this permission notice appear
#  * in supporting documentation.  Silicon Graphics makes no
#  * representations about the suitability of this software for any
#  * purpose.  It is provided "as is" without express or implied warranty.
#  *
#  */
#
# #ifndef __SGI_STL_MEMORY
# #define __SGI_STL_MEMORY
#
# #include <stl_algobase.h>
# #include <stl_alloc.h>
# #include <stl_construct.h>
# #include <stl_tempbuf.h>
# #include <stl_uninitialized.h>
# #include <stl_raw_storage_iter.h>
#
# // Note: auto_ptr is commented out in this release because the details
# //  of the interface are still being discussed by the C++ standardization
# //  committee.  It will be included once the iterface is finalized.
#
# #if 0
# #if defined(_MUTABLE_IS_KEYWORD) && defined(_EXPLICIT_IS_KEYWORD) && \
#     defined(__STL_MEMBER_TEMPLATES)
#
# __STL_BEGIN_NAMESPACE
#
# template <class X> class auto_ptr
# {
# private:
#   X* ptr;               // 托管的原生指针
#   mutable bool owns;    // 是否拥有托管指针
# public:
#   typedef X element_type;
#
#   // 显式构造函数, 防止隐式转换
#   // 通常接收一个原生指针进行构造
#   // 构造函数不能失败, 故不能抛出异常
#   explicit auto_ptr(X* p = 0) __STL_NOTHROW : ptr(p), owns(p) {}
#
#   // auto_ptr 可以以相同类型的 auto_ptr 进行构造
#   // 注意: 对象所有权发生转移, 用于构造的只能指针释放对象所有权
#   auto_ptr(const auto_ptr& a) __STL_NOTHROW : ptr(a.ptr), owns(a.owns) {
#     a.owns = 0;
#   }
#
#   // auto_ptr 可以以另一种相关类型的 auto_ptr 进行构造
#   // 注意: T 必须能转换成 X 类型, 对象所有权发生转移
#   template <class T> auto_ptr(const auto_ptr<T>& a) __STL_NOTHROW
#     : ptr(a.ptr), owns(a.owns) {
#       a.owns = 0;
#   }
#
#   // 重载operator =, 首先判断是否是本身, 如果不是则进行对象所有权的转移
#   auto_ptr& operator=(const auto_ptr& a) __STL_NOTHROW {
#     if (&a != this) {
#       if (owns)
#         delete ptr;
#       owns = a.owns;
#       ptr = a.ptr;
#       a.owns = 0;
#     }
#     // 个人感觉应该在此加上
#     // return *this;
#   }
#
#   // 和上面的operator =功能一样, 但是提供了兼容类型的转换操作
#   template <class T> auto_ptr& operator=(const auto_ptr<T>& a) __STL_NOTHROW {
#     if (&a != this) {
#       if (owns)
#         delete ptr;
#       owns = a.owns;
#       ptr = a.ptr;
#       a.owns = 0;
#     }
#
#     // 个人感觉应该在此加上
#     // return *this;
#   }
#
#   // auto_ptr生命周期结束, 释放对象所有权, 实现资源释放目的
#   ~auto_ptr() {
#     if (owns)
#       delete ptr;
#   }
#
#   // 提供和原生指针一样的操作
#   X& operator*() const __STL_NOTHROW { return *ptr; }
#   X* operator->() const __STL_NOTHROW { return ptr; }
#
#   // 获取原生指针的地址, 主要用于一些只接受原生指针的函数
#   X* get() const __STL_NOTHROW { return ptr; }
#   // 释放指针所有权, 并返回原生指针
#   // 主要用于取消指针托管
#   X* release const __STL_NOTHROW { owns = false; return ptr }
# };
#
# __STL_END_NAMESPACE
# #endif /* mutable && explicit && member templates */
# #endif /* 0 */
#
#
# #endif /* __SGI_STL_MEMORY */
#
#
# // Local Variables:
# // mode:C++
# // End:
时间: 2024-10-29 19:13:31

STL memory.cpp的相关文章

如何在android app中使用STL库

方法: 1.在jni目录下新建Application.mk; 加入 APP_STL := stlport_static右边的值还可以换成下面几个: system - 使用默认最小的C++运行库,这样生成的应用体积小,内存占用小,但部分功能将无法支持 stlport_static - 使用STLport作为静态库,这项是Android开发网极力推荐的 stlport_shared - STLport作为动态库,这个可能产生兼容性和部分低版本的Android固件,目前不推荐使用. gnustl_st

工作积累之NDK编译STL (zhuan)

方法: 1.在jni目录下新建Application.mk; 加入 APP_STL :=  stlport_static  右边的值还可以换成下面几个: system - 使用默认最小的C++运行库,这样生成的应用体积小,内存占用小,但部分功能将无法支持 stlport_static - 使用STLport作为静态库,这项是Android开发网极力推荐的 stlport_shared - STLport 作为动态库,这个可能产生兼容性和部分低版本的Android固件,目前不推荐使用. gnust

STL之Errors and Exceptions

Error Handling STL设计的目标是性能最优化,而不是最安全. 错误检查是极其浪费时间的,因此,STL对于错误处理几乎没有做处理,因此,这对STL的使用者的要求就非常高. 为什么不采取错误处理呢,下面是两个主要原因: Error checking reduces performance, and speed is still a general goal of programs. As mentioned, good performance was one of the design

STL之set &amp;&amp; multiset

一.set 在了解关联容器set之前,让我们先来看看下面这个例子,并猜测该例子输出什么: // stl/set1.cpp #include <iostream> #include <set> int main() { //type of the collection typedef std::set<int> IntSet; IntSet coll; //set container for int values /* insert elements from 1 to

怎么样android app正在使用STL库

方法: 1.在jni文件夹下新建Application.mk; 增加 APP_STL := stlport_static右边的值还能够换成以下几个: system - 使用默认最小的C++执行库,这样生成的应用体积小,内存占用小,但部分功能将无法支持 stlport_static - 使用STLport作为静态库,这项是Android开发网极力推荐的 stlport_shared - STLport作为动态库,这个可能产生兼容性和部分低版本号的Android固件,眼下不推荐使用. gnustl_

C/C++取出变量的每一位的值(第一次知道还有QBitArray)

前写程序最多也只是字节级别操作,用char和memcpy进行一系列内存操作.此次一个sdk,其状态值直接是每位一个标示,所以需要取出每位进行操作.当然CPP也有丰富的位运算操作,但是虽然也学过,知道意思,但是实际却几乎没用过.这次只能动用它了. 第一种方法:思路就是全部用位与,这样就能取出来每一位是否为1.直接上代码吧,反正看了也就理解了. 1 uint j = 1; 2 for (uint k = 0;k < sizeof(uint) * 8;(j = j<<1),k++){ 3   

简单的内存池实现gko_alloc

在用gpreftools优化gko_pool的时候我发现一个问题,malloc竟然成了性能瓶颈 由于在每个连接建立的时候gko_pool默认会为读写各分配2KB的buf备用,这个是比较固定的 每个连接的的生命周期会伴随着4KB大小的内存malloc & free 正好可以写个只能分配固定大小内存的"内存池",基本思路就是每次分配一个大内存bucket(64MB),需要4KB的块的时候就从bucket中取,当bucket没有可用slot就再分配一个新的bucket,当bucket

通过OCCI连接oracle(C++)

OCCI介绍 OCCI:Oracle C++调用接口(OCCI),即Oracle的C++API,允许你使用面向对象的特性.本地类.C++语言的方法来访问Oracle数据库. OCCI优势 基于标准C++和面向对象的设计: 效率较高: 适合开发C/S模式的程序,软件中间层: OCCI特性 完整支持SQL/PLSQL 为不断增长的用户和请求提供了弹性选项 为使用用户自定义类型,如C中的类,提供了无缝接口 支持所有的Oracle数据类型以及LOB types 可以访问数据库元数据 OCCI头文件及动态

ubuntu下安装程序的五种方法

在ubuntu当中,安装应用程序我所知道的有三种方法,分别是apt-get,dpkg安装deb和make install安装源码包三种.下面针对每一种方法各举例来说明. 一.apt-get方法 使用apt-get install来安装应用程序算是最常见的一种安装方法了,比如我要安装build-essential这个软件,使用以下,他会帮我把所有的依赖包都一起安装了. sudo apt-get install build-essential 执行上述命令以后,我们可以看到一下信息,The foll