Re: [deal.II] Re: Little question about constructor

2019-09-04 Thread yuesu jin
Dear Konrad, Appreciating for your detailed explanation, it really helps!! Thank you! I am learning c++ by the means of studying deal.ii, so actually I am a layman both in deal.ii and c++. I will read the reference page and books you recommended. Thanks again!! Best regards, Yuesu On Wed, Sep 4,

[deal.II] Re: Little question about constructor

2019-09-04 Thread Konrad
Hi Yuesu, I think this is rather a general C++ question. Once you create an object all members are initialized by invoking a constructor. If you do not declare any constructor the compiler will silently generate a set of constructors. The default constructor that takes no arguments is one of t