搜索结果
找到约 35 项符合
BOOL 的查询结果
按分类筛选
VC书籍 清晰实用地讲解了标准库
清晰实用地讲解了标准库,并且以驱动,重点强调容器、迭代器、算法(即标准模板库STL)、string 类和iostream。
详细讨论了标准C++的新特性,包括异常处理、运行时类型识别、名字空间、内置bool类型和新类型强制转换表示等,并说明了如何有效地使用这些特性。
全面介绍了C++语言的高级特性,例如模板、类、继承机制, ...
技术书籍 c语言深度剖析
第一章关键字...................................................................................................................................9
1.1,最宽恒大量的关键字----auto..........................................................................................11
1.2,最快的关键字---- register. ...
源码 c#简单计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
软件 简单的计算器
// 学生管理.cpp : Defines the entry point for the application.
//
#include "stdafx.h"
#include "resource.h"
#define MAX_LOADSTRING 100
// Global Variables:
HINSTANCE hInst; // current instance
TCHAR szTitle[MAX_LOADSTRING]; // The title bar text
TCHAR szWindowClass[MAX_LOADSTRING]; ...
源码 数据结构实验
#include <iostream>
#include <stdio.head>
#include <stdlib.head>
#include <string.head>
#define ElemType int
#define max 100
using namespace std;
typedef struct node1
{
ElemType data;
struct node1 *next;
}Node1,*LinkList;//链栈
typedef struct
{
ElemType *base;
int top;
}SqStack;// ...