Difference between decltype and typeof?

前端 未结 5 653
别跟我提以往
别跟我提以往 2021-01-01 10:48

Two question regarding decltype and typeof:

  • Is there any difference between the decltype and typeof operato
5条回答
  •  春和景丽
    2021-01-01 11:14

    typeof has not been standardized, although it was implemented by several compiler vendors, e.g., GCC. It became obsolete with decltype.

    A good explanation for the shortcomings of typeof can be found in this related answer.

提交回复
热议问题