2013年4月29日
摘要: Institute of Electrical and Electronics Engineershttp://www.ieee.org/电器和电子工程师协会,1963年成立,是多个期刊和会议的组织者,以及工业标准开发者。常见标准: 阅读全文
posted @ 2013-04-29 13:01 chenkkkabc 阅读(163) 评论(0) 推荐(0) 编辑
  2013年4月22日
摘要: bool is_leap_year(unsigned int n) { return n % 4 == 0 && n % 100 != 0 || n % 400 == 0;} 阅读全文
posted @ 2013-04-22 12:57 chenkkkabc 阅读(150) 评论(0) 推荐(0) 编辑
  2013年4月21日
摘要: Deprecated in C++ 11,因为Transfer of ownership。比如作为函数参数传递时,会丧失所有权。get() 获取原始指针release() 释放auto_ptr并返回原始指针reset(X*) 释放对象并为auto_ptr设置新值operator* 解引用对象operator-> 解引用对象成员operator= 拷贝并转移所有权#include <memory>struct S { int i;};int main() { std::auto_ptr<int> p1(new int); *p1.get() = 1; std::au 阅读全文
posted @ 2013-04-21 17:44 chenkkkabc 阅读(182) 评论(0) 推荐(1) 编辑
  2013年4月20日
摘要: Internet Engineering Task Forcehttp://www.ietf.org/互联网工程任务组,负责互联网标准的开发和推动。Request For Commentshttp://www.ietf.org/rfc.htmlRFC是IETC发布的一系列备忘录,最终演变为用来记录互联网规范、协议、过程等的标准文件。 阅读全文
posted @ 2013-04-20 16:12 chenkkkabc 阅读(540) 评论(0) 推荐(0) 编辑
摘要: union特殊的类类型,一次只能持有它的一个非static数据成员可以有成员函数,但是没有虚函数没有基类,也不能作为基类不能有引用类型的数据成员默认访问级别为public大小为最大数据成员的大小匿名unionint main(){ union { int a; const char* p; }; a = 1; p = "Jennifer";}union-like class#include <iostream>// S has one non-static data member (tag), three enumerator members, // and t 阅读全文
posted @ 2013-04-20 15:04 chenkkkabc 阅读(268) 评论(0) 推荐(0) 编辑
  2013年4月13日
摘要: EVM: Earned Value Management项目绩效测量方法。以项目计划作为基准线来测量。基本参数BCWS: Budgeted Cost for Work Scheduled (PV: Planned Value)计划工作量预算成本 BCWS=计划工作量*预算定额ACWP: Actual Cost for Work Performed (AC: Actual Cost )已完成工作量实际成本BCWP: Budgeted Cost for Work Performed (EV: Earned Value)已完成工作量预算成本 BCWP=已完成工作量*预算定额常用尺度CV: Cost 阅读全文
posted @ 2013-04-13 11:51 chenkkkabc 阅读(305) 评论(0) 推荐(0) 编辑
  2013年4月9日
摘要: Chipset芯片组是一组集成电路(芯片)用于管理计算机处理器、内存和外设的数据流,通常位于主板上。Northbridge (Memory Controller Hub)北桥用来处理高速信号,负责CPU、RAM、AGP和PCI Express之间的通信。Southbridge (I/O Controller Hub)南桥用来处理低速信号,负责连接PCI控制器、ATA控制器、USB控制器、网络控制器、音效控制器等,汇总之后连接北桥与CPU通信。 阅读全文
posted @ 2013-04-09 20:23 chenkkkabc 阅读(1018) 评论(0) 推荐(0) 编辑
  2013年4月6日
摘要: Unified Modeling Language 统一建模语言http://www.uml.org/OMG (Object Management Group) 对象管理组织负责维护组成the Diagram Interchange Specificationthe UML Infrastructurethe UML Superstructurethe Object Constraint Language起源OOAD by Grady BoochOOSE by Ivar JacobsonOMT by James RumbaughUML包括14种图示:Diagram├── Behavior Di 阅读全文
posted @ 2013-04-06 14:16 chenkkkabc 阅读(151) 评论(0) 推荐(0) 编辑
  2013年4月4日
摘要: Free Software Foundationhttp://www.fsf.org/自由软件基金会,Richard Matthew Stallman (rms) 创立于1985年,负责GNU Project的运营。GNU‘s Not Unix!http://www.gnu.org/GNU是一个由自由软件(Free Software)组成的类Unix操作系统。“自由软件关乎使用者运行、复制、发布、研究、修改和改进该软件的自由。” 阅读全文
posted @ 2013-04-04 10:00 chenkkkabc 阅读(178) 评论(0) 推荐(0) 编辑
  2013年4月2日
摘要: Portable Operating System Interface [for Unix]是IEEE为要在各种UNIX操作系统上运行的软件,而定义API的一系列互相关联的标准的总称POSIX.1-2008the Base Definitions, Issue 7the System Interfaces and Headers, Issue 7the Commands and Utilities, Issue 7 阅读全文
posted @ 2013-04-02 20:21 chenkkkabc 阅读(220) 评论(0) 推荐(0) 编辑