关于C++的之前说过很多了,而且这本书也算是入门级别的书,因此,打算大概过一遍.前期的
so,先从第零章开始.
第零章主要内容是以hello world为例子介绍了注释,#include命令,主函数main和函数以及输入返回语句转义字符等.
下面是部分题目题解:
0-2
#include
using namespace std;
int main()
{
cout << "Th...
分类:
编程语言 时间:
2014-09-08 01:05:36
阅读次数:
283
1.首先在对应的sdk manager里面下载一个4.03以上的api。
这里我选择的是4.2.2 (api17)
2.选择里面的" Intel Hardware Accelerated Execution Manager" "Intel
x86 Atom System Image" 来下载。 当然其他必备的也要下载。
看我勾选的项:
3....
分类:
移动开发 时间:
2014-08-21 21:15:18
阅读次数:
325
使用 Eclipse 或 ADT Bundle 进行 android 开发时,安卓模拟器的效率一直是个头疼的问题。为此,Intel 专门推出了针对 Intel 处理器的安卓模拟器加速程序 Intel Haxm (Hardware Accelerated Execution Manager)。但是在 ...
The C++ standard says nothing about how implementations should manage template i nstantiation, so every implementation handles instantiation in its ow...
分类:
编程语言 时间:
2014-08-10 10:18:20
阅读次数:
300
1. 为什么用string::size_type而不是int?--Why usestring::size_type?intis supposed to work! it holds numbers!--A short holds numbers too. So does a signed char....
分类:
编程语言 时间:
2014-07-29 17:37:52
阅读次数:
278
第6章 使用库算法
本章中主要教我们如何使用几个库算法来解决与处理字符串和学生成绩相关的问题。
1、分析字符串
使用一个循环来连接两幅字符图案
for(vector::const_iterator it = bottom.begin(); it != bottom.end(); ++it)
ret.push_back(*it);
等价于
ret.insert(ret.end(...
分类:
编程语言 时间:
2014-05-24 20:24:10
阅读次数:
365
第0章 开始学习C++
1、每次学习一个新的语言,大家都是从Hello, world!开始
// lesson0_1.cpp : 定义控制台应用程序的入口点。
//功能:编译并运行Hello,world
//时间:2014.5.7
#include "stdafx.h"
#include "iostream"
using namespace std;
int _tmain(in...
分类:
编程语言 时间:
2014-05-22 06:24:33
阅读次数:
287
第2章 循环和计数
本节主要利用改进输出问候语的程序来改进如何支持循环和条件分支的。
1、使用循环输出一个周围带框架框住的问候语,且用户自己提供在框架与问候语之间的空格的个数。
// lesson2_1.cpp : 定义控制台应用程序的入口点。
//功能:使用循环
//时间:2014.5.8
#include "stdafx.h"
#include "iostream"
#include...
分类:
编程语言 时间:
2014-05-21 17:15:38
阅读次数:
324
第4章 组织程序和数据
从前面的学习中,我们可以发现程序并不是我们所想的那么简短,他们都有一个共同的特性,那就是
1)都能解决某些特定类型的问题
2)与其他的大多数工具都互相独立
3)都具有一个自己的名称
C++中提供两种基本的方法来让我们组织大型的程序,函数(子程序)和数据结构。
1、组织计算
1)计算总成绩
子函数grade
//根据学生的期中考试、期末考试、家庭作...
分类:
编程语言 时间:
2014-05-21 10:50:28
阅读次数:
386
加快Android模拟器运行速度本文部分参考,原文:http://www.imzzy.com/andorid-virtual-device-intel-hardware-accelerated.html安装英特尔硬件加速执行管理器可以让安卓模拟器加快运行速度。原文:http://www.imzzy....
分类:
移动开发 时间:
2014-05-04 10:41:12
阅读次数:
480