标签: c++ pointers auto
auto*和auto用于指针时有什么区别吗?例如,
auto*
auto
TestClass t; auto* a = &t; auto b = &t; a->doSomething(); b->doSomething();
我想知道他们是否不同。