Here article about webkit design, architecture etc and a lot of C/C++ Articles made by mine only. All articles are tested in Unix/Solaris operating system using gcc/g++ compiler. You can ask any questions/doubts any time.I am intersted in Parallel computing by OpenMP ,Distributed computing by MPI,Algorithm Design, C/C++, Unix/Solaris etc.
Saturday, July 19, 2008
FAQ for Academic students: Any Computer Science subjects
I will get more and more pleasure if you ask me more and more Intelligent quetion
4 comments:
i need c/c++ compilerr
go to this site and you can get very easily
http://members.tripod.com/begin_cpp/index.html
Can we do something in constructor of any class like
class def
{
.....
};
class abc
{
public:
abc()
{
def obj=new def;
}
};
You can do. But do it very carefully.
1. first anything which is extra to building of an object, that should be abfer bracket({). you can'nt do like this
abc(): def obj=new def
{
}
2. make sure that that object will construct at right time else your constructor will be fail.
3. Dont do any virtual stub things in your constructor.
Post a Comment