What does the “::” mean in C++?

后端 未结 4 1810
花落未央
花落未央 2021-02-07 03:10

What does this symbol mean?

AirlineTicket::AirlineTicket()
4条回答
  •  离开以前
    2021-02-07 03:53

    AirlineTicket is like a namespace for your class. You have to use it in the implementation of the constructor.

提交回复
热议问题