首页 > 其他 > 详细

点(.)运算符和箭头(->)运算符的区别

时间:2016-03-05 06:47:17      阅读:185      评论:0      收藏:0      [点我收藏+]

 本机中,char类型数据占用1byte, unsigned int, int, long int, float类型的数据占用4 bytes, double类型的数据占用8bytes.

至于指向所有基本数据类型的指针(char*, int* , double*等)都是占用4bytes, 可以使用sizeof函数进行测量。

The<< operator on std::cout is overloaded. Its behavior depends on the type of the right operand.

The reason is that std::cout will treat a char* as a pointer to( the first character of) a C-style string and print it as such.

If you want to the address instead, you can just cast it to a pointer that isn‘t treated that way, something like:

cout<<(void*) terry; 或者cout<<(const void*) terry;

点运算符作用于对象,用于获取对象拥有的字段或方法。

箭头运算符作用于对象指针,先或者指针指向的对象,再隐式调用点运算符,获取对象拥有的字段或方法。

点(.)运算符和箭头(->)运算符的区别

原文:http://www.cnblogs.com/cbyzju/p/5244000.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!