摘要:
new和malloc区别?delete和free区别? malloc和free是C语言的库函数 new和delete叫做运算符 malloc是否开辟成功是通过返回值和空指针比对判断.而new开辟失败会抛出异常 bad_alloc new 不仅可以做内存开辟,还可以做内存初始化操作. int *p = 阅读全文
摘要:
代码 #include <iostream> using namespace std; int sum(int a,int b){ int temp=0; temp= a +b; return temp; } int main(){ int a =10; int b=20; int ret =sum 阅读全文