Say I have a class Student, and I have already declared a non-member function called "function_A" that takes in as an argument, type Student.

Now say INSIDE the Student class, I had a member function, and in it, I wanted to reference the non-member function, "function_A", declared earlier. What would I pass in as the argument (the argument itself must be type Student).

code

link|improve this question

50% accept rate
This type of question works best with some sample code to illustrate the problem. – Björn Pollex Apr 28 '11 at 9:13
feedback

1 Answer

Do you mean something like this?

void function_A(Student s);

class Student { 
   void function_A() {
        ::function_A(*this);
   }

if the member function's name is different than function_A, I can't see any problem.

link|improve this answer
ah, is the "*this" just a reference to the object we're dealing with? – google11video Apr 28 '11 at 8:54
Yes, that's correct. – Simone Apr 28 '11 at 8:56
wow that's terrific! thanks! – google11video Apr 28 '11 at 9:01
hmm... actually i'm still getting an error saying "variable or field 'function_A()' declared void" – google11video Apr 28 '11 at 9:08
seems like its a problem with the Student s argument that's being passed in... hmm – google11video Apr 28 '11 at 9:10
show 5 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.