• C++是面向对象的语言,而C是面向过程的语言;
    • C++引入new/delete运算符,取代了C中的malloc/free库函数;
    • C++引入引用的概念,而C中没有;
    • C++引入类的概念,而C中没有; C++引入函数重载的特性,而C中没有