How can I see all functions of a class?

100 Views Asked by At

Mainly I want to see compiler-generated functions (default constructor, copy constructor, assignment-operator, move-assignment, destructor).
Just want to see which functions compiler generated for me.

I assumed I could see this in the symbol table but I'm having trouble spotting them in the symbol table with name mangling. I can see other functions I defined but I don't know how I can find the constructors, etc.

Is there a better way to see which functions are associated with a class?

1

There are 1 best solutions below

3
On

There's a problem with your idea:

The compiler will implicitly declare special functions when allowed.
But it will only implicitly define them, iff they are ODR-used.

Also, that use might have been inlined, so there might not be a symbol to find.

Thus, the only fail-safe way to find out which functions the compiler will generate on-demand is trying to use them.
Though just knowing the rules and checking manually should be sufficient, they are easy enough.