最新回答 / 幕布斯6202225
#include<stdio.h>int main(){? ? int aaa = 20;? ? int bbb = 30;? ? // const int * constPoint = &aaa;? ? // printf("zhizhen: %d\n",* constPoint);? ??? ? // constPoint = &bbb;? ??? ? // printf("zhizhen: %d\n",* constPoint);? ??? ? // *constPoin...
2022-07-15
#include <stdio.h>
int o(int a, int b, int(*callback)())
{
int c = a + b;
int ret = (*callback)();
//printf("%d\n",ret);
int d = c + a;
return d;
}
int q()
{
printf("funcA\n");
return 0;
}
int main(int argc, char** argv)
{
o(1, 2, q);
return 0;
}
int o(int a, int b, int(*callback)())
{
int c = a + b;
int ret = (*callback)();
//printf("%d\n",ret);
int d = c + a;
return d;
}
int q()
{
printf("funcA\n");
return 0;
}
int main(int argc, char** argv)
{
o(1, 2, q);
return 0;
}
2022-07-03
當(dāng)父類指針指向子類對(duì)象時(shí),執(zhí)行釋放操作,子類對(duì)象也會(huì)被釋放掉
2022-06-23
最贊回答 / Colinchow
memcpy指的是C和C++使用的內(nèi)存拷貝函數(shù),函數(shù)原型為void *memcpy(void *destin, void *source, unsigned n);函數(shù)的功能是從源內(nèi)存地址的起始位置開始拷貝若干個(gè)字節(jié)到目標(biāo)內(nèi)存地址中,即從源source中拷貝n個(gè)字節(jié)到目標(biāo)destin中。
2022-04-11
感謝講師!江湖再會(huì)!另外,總感覺這門課程更應(yīng)該叫“深入淺出C++”哈哈哈,我有點(diǎn)C#基礎(chǔ),毫不掩蓋地說每節(jié)課都令我感到震撼,常常感嘆C++的強(qiáng)大。每節(jié)課都干貨滿滿,很精煉。再次感謝!?。。。。。。?!
2022-04-05