“.”的正式名称是什么?和 C 和 C++ 中的“->”运算符?

What's the official name of '.' and '->' operators in C and C++?

我很好奇他们是否有正式名称或只有 'dot' 和 'arrow'?我尝试在 cpluscplus 和 Deitel 中搜索它,但没有找到任何东西

根据我的 preferred (C++) reference they are called Member Access 操作员。

但为了区分它们,通常称为 箭头 运算符(请参阅 link @AnT mentioned in their )。

C 标准称它们为成员访问运算符,但仅在索引中。除了索引中的一个位置外,其他任何地方都没有给它们命名。在同一个地方,->运算符被称为箭头运算符,.运算符被称为structure/union成员运算符。