methods of a class are never ever on the stack -- only data objects go there.
int main()
{
Foo f; // object f goes on the stack, but not the methods of that object.
}
Don't PM me with questions -- you might get a nasty PM in response. If you have a question then post it in one of the forums.