码迷,mamicode.com
首页 >  
搜索关键字:shared library    ( 12117个结果
boost操作xml 5分钟官方教程
Five Minute TutorialThis tutorial uses XML. Note that the library is not specifically bound to XML, and any other supported format (such as INI or JSO...
分类:其他好文   时间:2014-08-12 00:20:33    阅读次数:269
C++ Bit Fields
http://msdn.microsoft.com/en-us/library/ewwyfdbe%28v=vs.71%29.aspxNoteAn unnamed bit field of width 0 forces alignment of the next bit field to the ne...
分类:编程语言   时间:2014-08-12 00:19:13    阅读次数:296
《Prism 5.0源码走读》 设计模式
Prism或Prism构建的应用程序时会使用大量的设计模式,本文简要列举Prism相关的那些设计模式。Adapter(适配器模式):Prism Library主要在Region和IoC container应用Adapter模式。ContentControlRegionAdapter.csItemsC...
分类:其他好文   时间:2014-08-12 00:11:43    阅读次数:365
boost 学习
智能指针的学习中文教程网站http://zh.highscore.de/cpp/boost/不过代码可能 由于BOOST 版本不同需要稍作修改scoped_ptr 离开作用域则自动调用类析构函数或者函数delete方法shared_ptr 使用率最高的指针 类似scoped_ptr 但是所有权可以转...
分类:其他好文   时间:2014-08-11 20:48:02    阅读次数:270
VB的MSHFlexGrid控件内容导入Excel
机房收费系统中有很多窗体用到导出到Excel,说一下vb与Excel的交互,如何才能将MSHFlexgrid中的内容导出到Excel。      首先在VB中添加引用Microsoft Excel 14.0 Object Library。然后找到相应按钮,在过程中添加如下代码: Private Sub cmdExport_Click() Dim i As Long, j As Lo...
分类:其他好文   时间:2014-08-11 18:05:12    阅读次数:172
Linux下动态链接库的使用
Linux下的工具和程序模块很多都是通过动态链接库实现的。 在使用的时候分为两个过程: (1)编译时需要知道动态链接库文件的位置 (2)运行时需要打开动态链接库 对于(1)的情况,在makefile文件中指定,对于(2)中的情况需要在环境变量LD_LIBRARY_PATH中指定;当然如果程序是安装make install进来的,安装位置如果在系统默认的打开动态链接库路径内,则不再需要在LD...
分类:系统相关   时间:2014-08-11 18:00:22    阅读次数:261
Xcode5.1制作formework
新建一个工程,选择framework & library - Cocoa Touch Static Library,命名为TestKit。删除不必要的文件。TestKitTests 和TestKit target。 新建一个Bundle 。new-file-target;选择OS X目录下FrameWork&Library中的Bundle,取名为TestiOSKit。删除TestiOSKit中T...
分类:其他好文   时间:2014-08-11 17:48:52    阅读次数:246
13——以对象管理资源
RAII(resource acquisition is initialization):资源获取时便是初始化时机。不论控制流如何离开执行的区域块,其析构函数被调用,资源被释放。为防止内存泄露使用auto_ptr或shared_ptr();auto_ptr sp(new class)+shared_...
分类:其他好文   时间:2014-08-11 17:22:02    阅读次数:204
android app 架构设计02
二:在开放的过程中,尽量把工具类,BaseActivity 放在指定的位置, DateFormat Bitmap Notification Shared Preference Environment Device 三: 2.2 Task管理 线程只是一种机制,保证我们要完成的任务不运行在UI线程(也就是说不阻塞UI),完成的任务才是我们关注的核心,因此,我们可以通...
分类:移动开发   时间:2014-08-11 15:14:02    阅读次数:247
HDU-1685-Booksort(IDA*)
Problem Description The Leiden University Library has millions of books. When a student wants to borrow a certain book, he usually submits an online loan form. If the book is available, then the next...
分类:其他好文   时间:2014-08-11 15:05:42    阅读次数:274
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!