bunny
is the default class that has only bunny(construtor)
and ~bunny(desconstrutor)
default.
int main()
{
vector<bunny> bunnies; // Este usa o construtor padrão.
bunnies.push_back(); // ERRO! este não pode usar.
system("Pause");
return 0;
}
Error C2661 'std::vector<bunny,std::allocator<_Ty>>::push_back': no overloaded function takes 0 arguments.