c vs c++ in strcut and class

总习惯用c的用法,现在学习C++,老爱拿来比较。声明我用的是g++4.2.1 SUSE Linux。看例子吧

  1. #include <iostream>
  2. #include <cstring>
  3. #include <string>
  4. using namespace std;
  5. enum zoo_obj_kind{
  6. null = 0,
  7. #define null null
  8. no = 0,
  9. #define no no
  10. animal = 2,
  11. #define animal animal
  12. plant = 4,
  13. #define plant plant
  14. others = 8
  15. #define others others
  16. };
  17. struct zoo_obj{
  18. zoo_obj_kind zo_kind;
  19. char name [40];
  20. };
  21. class zoo_obj_1{
  22. zoo_obj_kind zo_kind;
  23. char name [40];
  24. };
  25. int main(void){
  26. cout << "struct :" << sizeof(struct zoo_obj) << endl;
  27. cout << "clsas :" << sizeof( zoo_obj_1) << endl;
  28. }

结果

  1. struct size:44
  2. clsas size:44

-------------------------------

  1. #include <iostream>
  2. #include <cstring>
  3. #include <string>
  4. using namespace std;
  5. enum zoo_obj_kind{
  6. null = 0,
  7. #define null null
  8. no = 0,
  9. #define no no
  10. animal = 2,
  11. #define animal animal
  12. plant = 4,
  13. #define plant plant
  14. others = 8
  15. #define others others
  16. };
  17. struct zoo_obj{
  18. zoo_obj_kind zo_kind;
  19. char name [40];
  20. void (*say)(struct zoo_obj *);
  21. };
  22. void say(struct zoo_obj *obj){
  23. if(!obj) {
  24. printf("null\n");
  25. return ;
  26. }
  27. printf("name:%s\n",obj->name);
  28. }
  29. class zoo_obj_1{
  30. zoo_obj_kind zo_kind;
  31. char name [40];
  32. void say(zoo_obj_1 &obj){
  33. cout << "name:" << name << endl;
  34. }
  35. };
  36. int main(void){
  37. cout << "struct :" << sizeof(struct zoo_obj) << endl;
  38. cout << "clsas :" << sizeof( zoo_obj_1) << endl;
  39. }

结果

  1. struct size:48
  2. clsas size:44

呵呵,有意思吧,在class中成员函数不占空间。下面你看看他们有多像

  1. #include <iostream>
  2. #include <cstring>
  3. #include <string>
  4. using namespace std;
  5. enum zoo_obj_kind{
  6. null = 0,
  7. #define null null
  8. no = 0,
  9. #define no no
  10. animal = 2,
  11. #define animal animal
  12. plant = 4,
  13. #define plant plant
  14. others = 8
  15. #define others others
  16. };
  17. struct zoo_obj{
  18. zoo_obj_kind zo_kind;
  19. char name [40];
  20. void (*say)(struct zoo_obj &);
  21. };
  22. void say(struct zoo_obj &obj){
  23. printf("name:%s\n",obj.name);
  24. }
  25. class zoo_obj_1{
  26. public:
  27. zoo_obj_kind zo_kind;
  28. char name [40];
  29. void say(){cout << "name:" << name << endl;}
  30. void say(zoo_obj_1 &obj){cout << "name:" << obj.name << endl;}
  31. };
  32. typedef struct zoo_obj s_zoo_obj;
  33. typedef zoo_obj_1 c_zoo_obj;
  34. int main(void){
  35. s_zoo_obj s_obj = {animal,"dog",say};
  36. zoo_obj_1 c_obj = {animal,"cat"};
  37. cout << "struct size:" << sizeof(struct zoo_obj) << endl;
  38. cout << "clsas size:" << sizeof( zoo_obj_1) << endl;
  39. s_obj.say(s_obj);
  40. c_obj.say(c_obj);
  41. }

结果

  1. struct size:48
  2. clsas size:44
  3. name:dog
  4. name:cat

这是同时使用了引用,那么指针呢。struct的指针当然没有问题,那么class的指针呢?看看代码

  1. #include <iostream>
  2. #include <cstring>
  3. #include <string>
  4. using namespace std;
  5. enum zoo_obj_kind{
  6. null = 0,
  7. #define null null
  8. no = 0,
  9. #define no no
  10. animal = 2,
  11. #define animal animal
  12. plant = 4,
  13. #define plant plant
  14. others = 8
  15. #define others others
  16. };
  17. struct zoo_obj{
  18. zoo_obj_kind zo_kind;
  19. char name [40];
  20. void (*say)(struct zoo_obj *);
  21. };
  22. void say(struct zoo_obj *obj){
  23. !obj
  24. ? printf("null\n")
  25. : printf("name:%s\n",obj->name);
  26. }
  27. class zoo_obj_1{
  28. public:
  29. zoo_obj_kind zo_kind;
  30. char name [40];
  31. void say(){cout << "name:" << name << endl;}
  32. void say(zoo_obj_1 *obj){
  33. !obj
  34. ? cout << "null\n"
  35. : cout << "name:" << obj->name << endl;
  36. }
  37. };
  38. typedef struct zoo_obj s_zoo_obj;
  39. typedef zoo_obj_1 c_zoo_obj;
  40. int main(void){
  41. s_zoo_obj s_obj = {animal,"dog",say};
  42. zoo_obj_1 c_obj = {animal,"cat"};
  43. cout << "struct size:" << sizeof(struct zoo_obj) << endl;
  44. cout << "clsas size:" << sizeof( zoo_obj_1) << endl;
  45. s_obj.say(&s_obj);
  46. c_obj.say(&c_obj);
  47. s_obj.say(NULL);
  48. c_obj.say(NULL);
  49. }

哈哈,结果仍然是

  1. struct size:48
  2. clsas size:44
  3. name:dog
  4. name:cat

更高级的特性呢?

比如在继承,接口。。。

个人认为C的这类名词没有,但他确实能出色的实现诸如此类的功能,而且更直观。可能是我的C++还不行吧。C高效和简单直观是没得说的。

时间: 2024-10-06 06:58:40

c vs c++ in strcut and class的相关文章

strcut的用法--------C语言结构体(struct)常见使用方法(转载)

今天复习一下struct,顺便挖掘一下以前没注意的小细节: 基本定义:结构体,通俗讲就像是打包封装,把一些有共同特征(比如同属于某一类事物的属性,往往是某种业务相关属性的聚合)的变量封装在内部,通过一定方法访问修改内部变量. 结构体定义: 第一种:只有结构体定义 [cpp] view plain copy struct stuff{ char job[20]; int age; float height; }; 第二种:附加该结构体类型的"结构体变量"的初始化的结构体定义 [cpp] 

【Linux 网络编程】常用TCP/IP网络编程函数

(1)函数socket 1 /**************************************************************** 2 ** 功能:创建一个套接字用于通信 3 ** 参数:domain 指定通信协议族 4 ** type 指定socket类型,流式套接字 SOCK_STREAM 5 ** 数据报套接字 SOCKDGRAM 6 ** 原始套接字 SOCKRAW 7 ** protocol 协议类型 (习惯上填写0) 8 ** 返回值:成功返回非负整数,它

C语言:内存字节对齐详解[转载]

一.什么是对齐,以及为什么要对齐: 1. 现代计算机中内存空间都是按照byte划分的,从理论上讲似乎对任何类型的变量的访问可以从任何地址开始,但实际情况是在访问特定变量的时候经常在特定的内存地址访问,这就需要各类型数据按照一定的规则在空间上排列,而不是顺序的一个接一个的排放,这就是对齐. 2. 对齐的作用和原因:各个硬件平台对存储空间的处理上有很大的不同.一些平台对某些特定类型的数据只能从某些特定地址开始存取.其他平台可能没有这种情况, 但是最常见的是如果不按照适合其平台的要求对数据存放进行对齐

linux字符设备驱动

一.字符设备.字符设备驱动与用户空间访问该设备的程序三者之间的关系. 如图,在Linux内核中使用cdev结构体来描述字符设备,通过其成员dev_t来定义设备号(分为主.次设备号)以确定字符设备的唯一性.通过其成员file_operations来定义字符设备驱动提供给VFS的接口函数,如常见的open().read().write()等. 在Linux字符设备驱动中,模块加载函数通过register_chrdev_region( ) 或alloc_chrdev_region( )来静态或者动态获

hdu5386 Cover(暴力,观察)

题目: Cover Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 1449    Accepted Submission(s): 498 Special Judge Problem Description You have an n?n matrix.Every grid has a color.Now there are two t

hdu5387 Clock(数学水题)

题目: Clock Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others) Total Submission(s): 709    Accepted Submission(s): 452 Problem Description Give a time.(hh:mm:ss),you should answer the angle between any two of the minute

Google App 常用各种jar说明总结

1.nineoldandroids-2.4.0.jar 下载地址:http://nineoldandroids.com/ 作用:动画集合,支持动画的旋转,缩放,移动,渐入效果 2.guava.jar 下载地址:https://github.com/google/guava 作用: The Guava project contains several of Google's core libraries that we rely on in our Java-based projects: col

数据链路层的访问

数据链路层的访问,高级货哦 SOCK_PACKET类型,数据从网卡的协议栈交给用户 建立一个SOCK_PACKET类型如下: socket(AF_INET,SOCK_PACKET,htons(0x0003)); 设置套接口以捕获链路帧的编程方法 #include<sys/socket.h> #include<sys/ioctl.h> //ioctl命令 #include<Linux/if_ether.h> //ethhdr结构 #include<net/if.h&

C中的时间函数的用法

C中的时间函数的用法    这个类展示了C语言中的时间函数的常用的用法. 源代码: #include <ctime>#include <iostream> using namespace std; class MyTime{public:    MyTime() { mPTime = 0; mStLocalTime = 0; mStGMTTime = 0; }    ~MyTime() {}; //time_t time(time_t * timer) 返回自1970年1月1日00