首页 > 编程语言 > 详细

Readonly and other things about C++

时间:2015-04-14 00:33:32      阅读:214      评论:0      收藏:0      [点我收藏+]

1. in c#

readonly can be delayed to initialize in constructor.

 

2. in c++

totally no readonly.

 

Many people have mastered c++ before c#. They are the managers.

So many of the interview are about the difference of c# and c++.

I am always confused about the interview problems since I never use it before.

Such as readonly. In c#, there are no pointer, we don‘t need const and readonly actually.

All you need to do is set a All caps up variable name as a field. such as:

class A 

{

double MYPI=0.7;

}

I am sure none will try to change it in the methods. The same for static. Only one way I will use static:

when I need to use a static method. That is all. Please forget the differece of static readonly and const.

We don‘t need it totally.

 

When I interviewed with Microsoft one year ago.

I am aware of that, the most important things of c# are all in Effective C#.

If you understand all items, you understand how to use c#.

  

 

Readonly and other things about C++

原文:http://www.cnblogs.com/gaoxianzhi/p/4423580.html

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