auto* 与 C++ 中的 auto

Max*_*eap 9 c++ pointers auto

是否有任何区别auto*,并auto当它们被用于指针?例如,

TestClass t;
auto* a = &t;
auto b = &t;

a->doSomething();
b->doSomething();
Run Code Online (Sandbox Code Playgroud)

我想知道它们是否不同。