摘要:
wxwidgets编译及环境配置 安装步骤: 到www.CodeBlocks.org下载并安装CodeBlocks,最好下载MinGW版本的,可以省掉安装和配置GCC的麻烦。 到www.wxWidgets.org下载并安装wxWidgets,如果只开发Windows程序可以只下载wxMSW版本,如果 阅读全文
摘要:
1 /*统计除了>之外的行里面CHED四个字母总数*/ 2 #include 3 #include 4 #include 5 using namespace std; 6 7 class FindLetter 8 { 9 private:10 ifstream m_r;11 ofstream m_w;12 string m_falphabet,m_temp;13 char m_jump;//要跳跃的字符14 unsigned int *m_number,m_length;//计数 和 文件中的一行的个数... 阅读全文
摘要:
共用的几个源代码文件: main.c 2.c 3.c 代码依次为: 1 #include<stdlib.h> 2 #include "a.h" 3 extern void function_two(); 4 extern void function_three(); 5 6 int main() 7 阅读全文
摘要:
#includeusing namespace std;class Shape{public:void getArea(){cout<<"this is Shape class"<<endl;}};class Rectangle:public Shape{private:double x,y;public: void putbox(const int newx,const int newy){x=newx;y=newy; cout<<"x,y="<<x<<","<< 阅读全文
摘要:
我在更新软件源后,看了看最新版的GTK开发版是3.0的。 所以,基本可以照搬。 写成一句话: GTK的演示程序: gtk-demo 当然,这是在编译widgets必要条件! 阅读全文
摘要:
Qt 是一个跨平台的 C++图形用户界面库,由挪威 TrollTech 公司于1995年底出品。Trolltech 公司在 1994 年成立,但是在 1992 年,成立 Trolltech 公司的那批程序员 就已经开始设计 Qt 了,Qt 的第一个商业版本于 1995 年推出。2008年1月31日,Nokia公司宣布通过公开竞购的方式收购TrollTech公司,旗下包括Qt在内的技术都归入Nokia旗下。并且Nokia针对自己的移动设备平台规划的需要,将Qt按不同的版本发行。Qt商业版:提供给商业软件开发。它们提供传统商业软件发行版并且提供在协议有效期内的免费升级和技术支持服务。Qt开源版:仅 阅读全文
摘要:
1 跟我一起写 Makefile 2 /**/ 3 4 陈皓 (CSDN) 5 6 概述 7 —— 8 9 什么是makefile?或许很多Winodws的程序员都不知道这个东西,因为那些Windows的IDE都为你做了这个工作,但我觉得要作一个好的和professional的程序员,makefil 阅读全文
摘要:
Fedora19 有关输入法的无法切换问题 和 终端的快捷设置问题 1.首先,要单击右上角的设置输入法的"区域与语言设置",要设置为“为每个窗口设置不同的输入源”。 还有,刚使用的初学者不知道 "super L“这个键,其实就是 win 就是键盘上的 windows 窗口图标。 那么切换键为,win 阅读全文
摘要:
Fedora19添加和设置YUM源添加yum源前先安装fastestmirror/downloadonly插件和axelget插件: 1.安装fastestmirror/downloadonly插件 由于yum中有的mirror速度是非常慢的,如果yum选择了这个mirror,这个时候yum就会非常 阅读全文
摘要:
atan 和 atan2 都是求反正切函数,如:有两个点 point(x1,y1), 和 point(x2,y2);那么这两个点形成的斜率的角度计算方法分别是:floatangle = atan( (y2-y1)/(x2-x1) );或float angle = atan2( y2-y1, x2-x1);atan 和 atan2 区别:1:参数的填写方式不同;2:atan2 的优点在于 如果 x2-x1等于0 依然可以计算,但是atan函数就会导致程序出错;结论:atan 和 atan2函数,建议用 atan2函数; 阅读全文
摘要:
#ifdef __cplusplus #include <cstdlib> #else #include <stdlib.h> #endif #include <SDL/SDL.h> #include <string> const int SCREEN_WIDTH=640; const int SC 阅读全文
摘要:
1 #ifdef __cplusplus 2 #include <cstdlib> 3 #else 4 #include <stdlib.h> 5 #endif 6 7 #include <SDL/SDL.h> 8 9 int main( int argc, char* args[] ) 10 { 阅读全文
摘要:
1 #include<iostream> 2 using namespace std; 3 4 class Base0 5 { 6 public: 7 int var0; 8 void fun0() 9 { 10 cout<<"Member of Base0"<<endl; 11 } 12 }; 1 阅读全文
摘要:
1 //多继承同名隐藏 2 #include <iostream> 3 4 using namespace std; 5 6 class Base1 7 { 8 public: 9 int var; 10 void fun() 11 { 12 cout<<"Member of Base1"<<end 阅读全文
摘要:
#include<unistd.h> #include<stdlib.h> #include<stdio.h> #include<string.h> #define BUFSIZE 200 int main() { FILE *read_fp; char buffer[BUFSIZE+1];/*用于 阅读全文