浙林龙哥

   :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
OLECHAR temp[256];
memset(temp,0x00,sizeof(temp));

注意:sizeof(temp) = 512!而不是256,故写成 memset(temp,0x00,sizeof(temp)*sizeof(OLECHAR));就错啦。


同理: fgetws( temp, sizeof(temp), fp );
就是去读512个字节出来!(最后一位为L"\0")
posted on 2004-07-21 17:19  浙林龙哥  阅读(725)  评论(0编辑  收藏  举报