2012年12月6日

c++标准库的构成

摘要: http://en.wikipedia.org/wiki/C%2B%2B看看wiki 的解释:The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance,templates, and exception handling among other features. After years of development, the C++ programming language standard w 阅读全文

posted @ 2012-12-06 15:57 GIS-MAN 阅读(576) 评论(0) 推荐(1) 编辑

c++ 重载的操作符

摘要: 可重载的 输出操作符<< 的重载 为了与 IO 标准库一致,操作符应接受 ostream& 作为第一个形参,对类类型 const 对象的引用作为第二个形参,并返回对ostream 形参的引用。 重载输出操作符一般的简单定义如下: // general skeleton of the overloaded output operator ostream& operator ... 阅读全文

posted @ 2012-12-06 15:01 GIS-MAN 阅读(296) 评论(0) 推荐(0) 编辑

c++ 高级库

摘要: http://baike.baidu.com/view/2622589.htm qwt QWT[1],全称是Qt Widgets for Technical Applications,是一个基于LGPL版权协议的开源项目, 可生成各种统计图。它为具有技术专业背景的程序提供GUI组件和一组实用类,其目标是以基于2D方式的窗体部件来显示数据, 数据源以数值,数组或一组浮点数等方式提供, 输出方式可... 阅读全文

posted @ 2012-12-06 14:08 GIS-MAN 阅读(295) 评论(0) 推荐(0) 编辑

导航