主要成员 union _Bxty { // storage for small buffer
or pointer to larger one _Elem _Buf[_BUF_SIZE]; _Elem *_Ptr; } _Bx; size_type
_Mysize; // current l...
分类:
其他好文 时间:
2014-06-06 18:22:13
阅读次数:
238
Screen.h#ifndef SCREEN_H#define SCREEN_H#include
class Screen {public: typedef std::string::size_type pos; // Action is a type
that can point to...
分类:
其他好文 时间:
2014-06-04 20:59:09
阅读次数:
350
1. map的erase函数使用
这里首先要注意,C++针对map的erase函数有不同的函数原型,这往往是出现问题的关键所在。根据参考文献1: 在C++98中:(1) void erase
(iterator position);(2)size_type erase (const key_type...
分类:
其他好文 时间:
2014-05-26 23:52:50
阅读次数:
412
Android DIP: Device-independent Pixel Graphics Design How Android Supports Device Displays: UI Design and UX Device Display Concepts: Size, Density, Orientation, DIP size Type small,normal,large,...
分类:
移动开发 时间:
2014-05-25 07:28:50
阅读次数:
458
#include#includeusing namespace std;int main(){
//初始化10个元素,每个值都为0 vector fvec(10); //输出 for(vector::size_type
ix=0;ix!=fvec.size();ix++) ...
分类:
其他好文 时间:
2014-05-08 18:44:26
阅读次数:
528
1 #include 2 #include 3 #include 4 #include 5
#include 6 #include 7 using namespace std; 8 9 #define OK 0 10 #define ERROR -1
11 #define OV...
分类:
其他好文 时间:
2014-04-27 16:56:44
阅读次数:
681