码迷,mamicode.com
首页 > 编程语言 > 详细

C++ 查看数据类型长短 , python的len的封装原理

时间:2018-01-17 11:25:02      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:sizeof   return   ons   har   nbsp   封装   查看   post   size   

 

int main(int argc, char const *argv[]) {
  int c[] = {1, 2, 3, 4, a};
  int d;
  d = sizeof c / sizeof *c;
  std::cout << d << \n; // 答案: 5
  return 0;
}

 

C++ 查看数据类型长短 , python的len的封装原理

标签:sizeof   return   ons   har   nbsp   封装   查看   post   size   

原文地址:https://www.cnblogs.com/renfanzi/p/8301521.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!