摘要: 1、数组名的本质 数组名的本质相当于一个常量指针 如:int a[10] a<=>int *const a; int b[10][20] b<=>int (*const b)[20] 所以a[5]==*(a+5); b[8][9]==*(*(b+8)+9)==*(b+8)[9]; 2、数组在函数中传 阅读全文
posted @ 2017-05-19 09:16 求关注啊 阅读(176) 评论(0) 推荐(0) 编辑
摘要: require.async(['wkcommon:widget/ui/lib/sio/sio.js'], function(sio) { var url = 'https://cpro.baidustatic.com/cpro/ui/c.js'; sio.callByBrowser( url, fu 阅读全文
posted @ 2017-05-19 09:14 求关注啊 阅读(320) 评论(0) 推荐(0) 编辑