经典C语言面试题1:malloc 和 new的区别?

①、malloc/ free是 C++/C语言的标准库函数,而new/ delete是C++的运算符

②、malloc内存分配成功返回的类型为void*,需要通过强制类型转换将void*转换为我们需要的类型。

③、new内存分配失败时会抛出bac_alloc异常,不会返回NULL;而malloc分配失败时则返回NULL

④、使用new操作符申请内存分配是无需指定内存块的大小,而malloc则需要显式地指出所需的内存大小。

例如:

class Student
{
public:  
   int id;
   int age;
   char name[10];
};
Student *ptr = new Student;
Student *ptr2 = (Student *)malloc(sizeof(Student));



你可能感兴趣的:(C语言基础&面试常见问题)