摘要:
#include "stdafx.h"#include <iostream.h>struct A{int a;unsigned __int64 b;short c;}Test_a;struct B{int a;short c;unsigned __int64 b;}Test_b;struct C{short a;short b;short c;}Test_c;struct D{unsigned __int64 a;short b;int c;int d;unsigned __int64 e;}Test_d;int main(){cout<<sizeo 阅读全文
摘要:
C++中的const关键字的用法非常灵活,而使用const将大大改善程序的健壮性,本人根据各方面查到的资料进行总结如下,期望对朋友们有所帮助。Const是C++中常用的类型修饰符,常类型是指使用类型修饰符const说明的类型,常类型的变量或对象的值是不能被更新的。一、Const作用如下表所示:No.作用说明参考代码1可以定义const常量 const int Max = 100;2便于进行类型检查const常量有数据类型,而宏常量没有数据类型。编译器可以对前者进行类型安全检查,而对后者只进行字符替换,没有类型安全检查,并且在字符替换时可能会产生意料不到的错误void f(const int i 阅读全文
摘要:
数据库结构学习数据库,先了解一下sql server 的界面吧!人性化的界面帮助初学者更容易上手数据库。数据库有系统数据库、数据库快照、reportserver 、reportserver tempDB和自定义数据库组成(employee、mysql、students)。我把它分为四部分:系统数据库,数据库快照,ssrs,自定义数据库一、系统数据库master 数据库:记录所有系统信息,:登陆,系统设置,初 始化信息,其他系统数据库及用户的信息。model 数据库,所有 数据库的模板数据库。可以根据自己的需要修改。一直存在在SQl 中。msdb 数据库:代理服务数据库。tempdb 数据库:临 阅读全文