Recent content by sameergk

  1. S

    Blu-ray vs. HD-DVD vs. Holographic

    BlueRay or HD-DVD After going thru lots of reviews this is what i had to say http://techtrack.blogspot.com/2005/05/blue-ray-vs-hd-dvd-or-sony-vs-toshiba.html" Aslo Go thru what http://news.techwhack.com/1252/20050507-tdk-prototype-blu-ray-disc-stores-twice-as-much-data/" had to say on this.
  2. S

    Writing the Constructor for the Array for Objects

    1. The Code was not compiling, since i had a constructor that takes 1 parameter, like this A(int m ) { a = m; } So as to make the code compilable,I modified the above constructor to take 1 or Zero Argumnets. 2. I'm not really intersted in explicitly initializing the objects after having...
  3. S

    Writing the Constructor for the Array for Objects

    I still don't find to have got a sufficing solution. Its really bugging me out. For the fact that I can achieve the same in Java because of the new () for each objects, that actually instantiates the individual objects. Here in C++ i don't thing that i have any other options, other than...
  4. S

    Writing the Constructor for the Array for Objects

    consider the program Class A { int a; public: A(int m = 0) { a = m; } } int main() { int i = 0; /* Intansiate/Initilize Object with the Constructor */ A Object(0); /* Here is the Problem */ /* Create the 32 Objects of Class A */ A nObjects[32]...
Back
Top