Search:

Type: Posts; User: t88spra

Search: Search took 0.00 seconds.

  1. Replies
    5
    Views
    964

    You explained it pretty clearly, since it's...

    You explained it pretty clearly, since it's returning itself by returning this it's returning a reference basically. What I'm wondering is in what operator overloading situations would you use * vs...
  2. Replies
    5
    Views
    964

    more "what's this code"

    Why does this return a reference to an employee class



    Employee & Employee::operator= (const Employee & rhs)
    {
    if (this == &rhs)
    return *this;

    itsFirstName =...
  3. Replies
    5
    Views
    906

    I guess so ... I didn't even realze that was a...

    I guess so ... I didn't even realze that was a function returning a pointer ... it's so much clearer now ... thank you
  4. Replies
    5
    Views
    906

    Actually inheretence and polymorphism are why I...

    Actually inheretence and polymorphism are why I ask. They were both in this "week" and I'm reading the review for the week and this code is what is throwing me off.



    class PartsList
    {...
  5. Replies
    5
    Views
    906

    Pointers to functions

    What are the advantages of having pointers to functions again ... and what kind of set up do they need?
  6. Replies
    7
    Views
    1,215

    I just came to realize I don't know why I'm doing...

    I just came to realize I don't know why I'm doing this ... I went back and looked in my book, it's likely I overlooked it, but what I've managed to gleen is that it's for clarity?
  7. Replies
    7
    Views
    1,215

    I would just like to apologize for just storming...

    I would just like to apologize for just storming onto your board and asking a question w/o searching. I always rag on people on other boards for not searching questions that are answered 50 times. ...
  8. Replies
    7
    Views
    1,215

    That actually cleared things up nicely, i wasn't...

    That actually cleared things up nicely, i wasn't sure if the word operator was something that was used in the book as a variable name that was supposed to be clear or if the actual word operator was...
  9. Replies
    7
    Views
    1,215

    What does this code mean exactly?

    My book doesn't have the best explanation in the world and I would appreciate it if someone would break this down with as much detail as they can stand, but to give the lazy ones ;) some general...
Results 1 to 9 of 9