#include <iostream>
class Test {
public:
int i;
void print()
{
std::cout << "Hello" << std::endl;
}
};
int main()
{
class Test *p = NULL;
p->print();
(*
鑑於任何對象,我可以調用#public_methods並查看它將響應的所有方法。但是,我發現有時候可以很方便地獲得所有沒有繼承的公共方法的快速列表,即那些真正屬於這個類的東西。 我在「Easy way to list public methods for a Ruby object」發現,如果我使用: (Foo.public_methods - Object.public_methods).sor