c vs c++ in strcut and class
总习惯用c的用法,现在学习C++,老爱拿来比较。声明我用的是g++4.2.1 SUSE Linux。看例子吧
- #include <iostream>
- #include <cstring>
- #include <string>
- using namespace std;
- enum zoo_obj_kind{
- null = 0,
- #define null null
- no = 0,
- #define no no
- animal = 2,
- #define animal animal
- plant = 4,
- #define plant plant
- others = 8
- #define others others
- };
- struct zoo_obj{
- zoo_obj_kind zo_kind;
- char name [40];
- };
- class zoo_obj_1{
- zoo_obj_kind zo_kind;
- char name [40];
- };
- int main(void){
- cout << "struct :" << sizeof(struct zoo_obj) << endl;
- cout << "clsas :" << sizeof( zoo_obj_1) << endl;
- }
- struct size:44
- clsas size:44
- #include <iostream>
- #include <cstring>
- #include <string>
- using namespace std;
- enum zoo_obj_kind{
- null = 0,
- #define null null
- no = 0,
- #define no no
- animal = 2,
- #define animal animal
- plant = 4,
- #define plant plant
- others = 8
- #define others others
- };
- struct zoo_obj{
- zoo_obj_kind zo_kind;
- char name [40];
- void (*say)(struct zoo_obj *);
- };
- void say(struct zoo_obj *obj){
- if(!obj) {
- printf("null\n");
- return ;
- }
- printf("name:%s\n",obj->name);
- }
- class zoo_obj_1{
- zoo_obj_kind zo_kind;
- char name [40];
- void say(zoo_obj_1 &obj){
- cout << "name:" << name << endl;
- }
- };
- int main(void){
- cout << "struct :" << sizeof(struct zoo_obj) << endl;
- cout << "clsas :" << sizeof( zoo_obj_1) << endl;
- }
- struct size:48
- clsas size:44
- #include <iostream>
- #include <cstring>
- #include <string>
- using namespace std;
- enum zoo_obj_kind{
- null = 0,
- #define null null
- no = 0,
- #define no no
- animal = 2,
- #define animal animal
- plant = 4,
- #define plant plant
- others = 8
- #define others others
- };
- struct zoo_obj{
- zoo_obj_kind zo_kind;
- char name [40];
- void (*say)(struct zoo_obj &);
- };
- void say(struct zoo_obj &obj){
- printf("name:%s\n",obj.name);
- }
- class zoo_obj_1{
- public:
- zoo_obj_kind zo_kind;
- char name [40];
- void say(){cout << "name:" << name << endl;}
- void say(zoo_obj_1 &obj){cout << "name:" << obj.name << endl;}
- };
- typedef struct zoo_obj s_zoo_obj;
- typedef zoo_obj_1 c_zoo_obj;
- int main(void){
- s_zoo_obj s_obj = {animal,"dog",say};
- zoo_obj_1 c_obj = {animal,"cat"};
- cout << "struct size:" << sizeof(struct zoo_obj) << endl;
- cout << "clsas size:" << sizeof( zoo_obj_1) << endl;
- s_obj.say(s_obj);
- c_obj.say(c_obj);
- }
- struct size:48
- clsas size:44
- name:dog
- name:cat
- #include <iostream>
- #include <cstring>
- #include <string>
- using namespace std;
- enum zoo_obj_kind{
- null = 0,
- #define null null
- no = 0,
- #define no no
- animal = 2,
- #define animal animal
- plant = 4,
- #define plant plant
- others = 8
- #define others others
- };
- struct zoo_obj{
- zoo_obj_kind zo_kind;
- char name [40];
- void (*say)(struct zoo_obj *);
- };
- void say(struct zoo_obj *obj){
- !obj
- ? printf("null\n")
- : printf("name:%s\n",obj->name);
- }
- class zoo_obj_1{
- public:
- zoo_obj_kind zo_kind;
- char name [40];
- void say(){cout << "name:" << name << endl;}
- void say(zoo_obj_1 *obj){
- !obj
- ? cout << "null\n"
- : cout << "name:" << obj->name << endl;
- }
- };
- typedef struct zoo_obj s_zoo_obj;
- typedef zoo_obj_1 c_zoo_obj;
- int main(void){
- s_zoo_obj s_obj = {animal,"dog",say};
- zoo_obj_1 c_obj = {animal,"cat"};
- cout << "struct size:" << sizeof(struct zoo_obj) << endl;
- cout << "clsas size:" << sizeof( zoo_obj_1) << endl;
- s_obj.say(&s_obj);
- c_obj.say(&c_obj);
- s_obj.say(NULL);
- c_obj.say(NULL);
- }
- struct size:48
- clsas size:44
- name:dog
- name:cat
c vs c++ in strcut and class的更多相关文章
- golang基础--strcut结构体
结构体struct类似python语言中的类class,结构体类的元素可以是一个变量,或者函数或者其它的类型,好比python的属性和方法. // struct结构体,类似python语言中的clas ...
- go strcut 封装
package model import "fmt" type person struct { Name string age int //其它包不能直接访问.. sal floa ...
- ASP.NET MVC5+EF6+EasyUI 后台管理系统(41)-组织架构
系列目录 本节开始我们要实现工作流,此工作流可以和之前的所有章节脱离关系,也可以紧密合并. 我们当初设计的项目解决方案就是可伸缩可以拆离,可共享的项目解决方案.所以我们同时要添加App.Flow文件夹 ...
- Linux C++中的时间函数(转)
http://net.pku.edu.cn/~yhf/linux_c/function/03.html asctime(将时间和日期以字符串格式表示) 相关函数 time,ctime,gmtime ...
- 33个超级有用必须要收藏的PHP代码样例
作为一个正常的程序员,会好几种语言是十分正常的,相信大部分程序员也都会编写几句PHP程序,如果是WEB程序员,PHP一定是必备的,即使你没用开发过大型软件项目,也一定多少了解它的语法. 在PHP的流行 ...
- [汇编与C语言关系]3. 变量的存储布局
以下面C程序为例: #include <stdio.h> ; ; ; int c; int main(void) { ; char b[] = "Hello World" ...
- C库函数使用与总结之时间函数
1. localtime(取得当地目前时间和日期) [头文件]#include <time.h> [函数原型]struct tm *localtime(const time_t * tim ...
- 一个asp采集程序
<% if request.QueryString="" then url="http://www.hbcz.gov.cn:7001/XZQHQueryWAR/xx ...
- 接触Matlab5年一个总结(Matlab要掌握的一些要点 )
阅读目录 前言 Matlab的开发环境与简单介绍 Matlab的常见命令 Matlab的灵魂-矩阵操作 Matlab的.m或.fig的编程与技巧 从大二开始接触到matlab,讲真,这是一个我觉得很良 ...
随机推荐
- libvirt学习
高级libvirt API可划分为5个API部分:虚拟机监控程序连接API.域API.网络API.存储卷API.存储池API.
- Widget小组件
一.使用步骤: 1.建立Widget的样式布局文件widght,布局只支持几种,比如,相对布局,线性布局,帧布局,布局里支持的控件也是有限的. 2.在res下建立一个新的文件夹我的命名为xml 3.在 ...
- matlab中s函数编写心得(转)
Part I: 所谓s函数是system Function的简称, 用它来写自己的simulink模块. s函数可以用matlab.C.C++.Fortran.Ada等语言来写, 这儿我只介绍怎样用m ...
- SQL Server 基础 03 查询数据基础
查询数据 简单的查询 create table stu_info ( sno int not null ,sname ) not null ,sex ) not null ,birth ) not n ...
- Python中的循环与跳出
--start-- for循环: for i in range(3): user_input = input("Your username:") passwd = int(inpu ...
- JAVA中MESSAGEBOX,静态类直接引用
原文:JAVA中MESSAGEBOX,静态类直接引用 package cisdi.mes.wrm.mcode.serviceImpl; import javax.persistence.Entity; ...
- [C++Boost]程序参数项解析库Program_options使用指南
介绍 程序参数项(program options)是一系列name=value对,program_options 允许程序开发者获得通过命令行(command line)和配置文件(config fi ...
- cocos2d-x on wp8架构简单介绍
1,基于C++的开发架构 支持3大移动平台以及3大桌面平台. 分为图形,声音,物理3大模块,另外还有脚本的导出. 在wp8/win32上的图形是基于d3d的,而在其它平台是基于opengl/openg ...
- Ibatis2.3.4的一个bug
java.lang.ClassCastException: com.chat.upgrade.domain.ClientFile cannot be cast to java.lang.String ...
- iOS开发RunTime之函数调用
文章来自小笨狼的iOS博客,一直认为csdn的博客UI不太好看,看博客不太爽.所以自己搭建了一个博客. 欢迎各位去链接中看我的博客.也欢迎大家加QQ群讨论iOS技术问题 经过两个多月的面试,工作最终尘 ...