Xijiang's Thoughts
希江的所思所想及往事记录
星期四, 九月 09, 2010
C++ initialization problem
A constructor like:
xVec(int a):n(a),v(new double[n]){}
is error prone, as the initialization is done randomly, the safest way is:
xVec(int a):n(a),v(new double[a]){}
as variable 'a' always exist when declaring.
没有评论:
发表评论
较新的博文
较早的博文
主页
订阅:
博文评论 (Atom)
没有评论:
发表评论