[linux] Install gcc
wget http://ftp.gnu.org/gnu/gcc/gcc-6.1.0/gcc-6.1.0.tar.gz tar -zvxf gcc-6.1.0.tar.gz --directory=/usr/local/ cd /usr/local/gcc-6.1.0 sudo ./contrib/download_prerequisites sudo mkdir build cd build sudo ../configure -enable-checking=release -enable-languages=c,c++ -disable-multilib...[C++]Introduction to C++
#include <iostream> #include <iomanip> using namespace std; class Shap{ private: int fulfill; int color; double pi; /* Mutable data member can be exchanged in const object. */ mutable int count; /* Const data member will handicape the copying of object, * and the c...标签: C++
[C++] About pointer to base class
#include <stdio.h> #include <stdlib.h> class base{ public: int a; int b; int c; }; class hello:public base{ public: int c; int d; }; int main(){ base b; b.a = 1; b.b = 2; b.c = 5; hello *c; c =(hello *)&b; c->d = 3; printf(" %d %d...标签: C++
[C++]An example of hash_map
#include <hash_map> #include <string> #include <iostream> using namespace std; using namespace stdext; int main(){ hash_map<string, string> mymap; mymap["aa"] = "Hello!"; mymap["bb"] = "You are who?"; mymap["cc"] = "See you!"; cout<<mymap["bb"]<<...标签: C++
VS2005添加X64编译平台
VS2005添加X64编译平台,方法如下: 1)打开控制面板->程序/卸载程序->更改->下一步->添加或移除功能; 控制面板里,右击“VS2005 ”->更改->点击“添加或移除功能” 2)在语言工具里,点开”+Visual C++”–>选择“X64编辑器和工具”,以及“Visual C++运行库”–>OK–>安装即可。标签: C++
[C++]从电子地图网站把电子地图生成到本地的程序
前面写了《批量下载网络图片到本地》及《将多张图片合并成大图》,所以综合一下,完整的从电子地图网站把电子地图生成到本地的程序: #include <vector> #include <urlmon.h> #include <string> #include <iostream> #include "loadpng.h" using namespace std; #pragma comment(lib, "urlmon.lib") #define ROW 12 #define COL 9 #define PI...标签: C++
[C++]将多张图片合并成大图
在《批量下载网络图片到本地》里写到了批量下载图片,其实那些图片是电子地图的散片,我想把这些图片合成一张大图,以便做成可以直接打开查看的地图甚至把印成纸质地图。当然这一切可以用图片处理软件一张一张地拼接,但地图散片动不动就是成百上千片,手动处理会很累,于是我选择了C++,代码很简单,同时这也得益于lodepng库的引入: #include <vector> #include <urlmon.h> #include <string> #include <iostream> #include "loadpng.h" usi...标签: C++
[C++]批量下载网络图片到本地
最近看上了一个地图,在网上有电子版的,但是电子地图是由一小块一小块图片组成了,我想把他们下载到电脑上,图片太多,又不想一个地址一个地址地复制,怎么办?于是,写了个小程序: #include <vector> #include <urlmon.h> #include <string> #include <iostream> using namespace std; #pragma comment(lib, "urlmon.lib") int main(int argc, char* argv[]) { int i, j;...标签: C++
日历
最新微语
- 有的时候,会站在分叉路口,不知道向左还是右
2023-12-26 15:34
- 繁花乱开,鸟雀逐风。心自宁静,纷扰不闻。
2023-03-14 09:56
- 对于不可控的事,我们保持乐观,对于可控的事情,我们保持谨慎。
2023-02-09 11:03
- 小时候,
暑假意味着无忧无虑地玩很长一段时间,
节假意味着好吃好喝还有很多长期不见的小朋友来玩...
长大后,
这是女儿第一个暑假,
一个半月...
2022-07-11 08:54
- Watching the autumn leaves falling as you grow older together
2018-10-25 09:45
分类
最新评论
- Goonog
i get it now :) - 萧
@Fluzak:The web host... - Fluzak
Nice blog here! Also... - Albertarive
In my opinion you co... - ChesterHep
What does it plan? - ChesterHep
No, opposite. - mojoheadz
Everything is OK!... - Josephmaigh
I just want to say t... - ChesterHep
What good topic - AnthonyBub
Certainly, never it ...