Search:

Type: Posts; User: adzee

Search: Search took 0.01 seconds.

  1. I'm suffering from memory leaks just looking at...

    I'm suffering from memory leaks just looking at this!
  2. Replies
    2
    Views
    767

    #include #include using...

    #include <iostream>
    #include <string>
    using namespace std;
    class parent{
    protected:
    int age;
    public:
    //setter
    void setValues(int Age) { age=Age; }
    //getter
  3. Replies
    2
    Views
    767

    is the main methods for storing and retrieving...

    is the main methods for storing and retrieving DATA in private class variables using setter/getter methods? is this common practice?
  4. Replies
    2
    Views
    767

    inistializing derived class veriables

    Sorry if my terminology is off, it's been a long while since i've practiced programming.


    #include <iostream>
    #include <string>
    using namespace std;
    class parent{
    protected:
    int age;...
  5. Thread: Declarations

    by adzee
    Replies
    21
    Views
    4,890

    DONT! i was there at one stage, i have come so...

    DONT! i was there at one stage, i have come so far from wondering what the hell does int, long, double, string and the sorts mean, keep it up, things will click and you will get there! TIP, get more...
  6. Replies
    6
    Views
    944

    #include #include using...

    #include <iostream>
    #include <string>
    using namespace std;
    class parent{
    private:
    string name;
    public:
    //setter method
    void setName(string Name) { name = Name; }
    //getter method
  7. Replies
    6
    Views
    944

    well, posting in this forum certainly helped!!! :/

    well, posting in this forum certainly helped!!! :/
  8. Replies
    6
    Views
    944

    read it, dont get it, should i just quit trying...

    read it, dont get it, should i just quit trying to learn C++!
  9. Replies
    6
    Views
    944

    Termonology at this stage is not my strong suit,...

    Termonology at this stage is not my strong suit, i'm not sure i can give you a clear example of what i am trying to say, also, can you please explain why i have to be firmiliar with the "rule of...
  10. Replies
    6
    Views
    944

    constructor & destructors

    Hi,


    Can anyone tell me what is the best way to develop classes, the book i am reading has a few ways to develop them and i can't see an obvious reason for using any of them, i am using...
  11. Thread: Need motivation

    by adzee
    Replies
    2
    Views
    827

    I'll get on it

    I'll get on it <<endl;
  12. Thread: Need motivation

    by adzee
    Replies
    2
    Views
    827

    Need motivation

    Hello,

    I have been using this site for close to 4-5 years now and i have barely gotten out of the basics of c++ programming, i always start off with great ideas for what i want to do but start to...
Results 1 to 12 of 12