hi, what is better? which different? thanks
Qt Code:
  1. OBJ o;
  2. OBJ* pointer = o;
  3. this->pointer->....
  4. // OR
  5. OBJ& get();
  6. this->get().
  7. //or
  8. OBJ* get();
  9. this->get()->.....
To copy to clipboard, switch view to plain text mode