g*****u 发帖数: 298 | 1 我说的就是copy cstr和dstr。TIC是thinking in C++吗?如果copy cstr不new,那么谁
应该delete呢?提供一个clear()让user调用吗?能不能讲讲不应该new的情况是怎么样
的? |
|
c***2 发帖数: 838 | 2 Here's the full file. You may compile and run: any case I missed?
==================================================================
/* wild.c
*/
#include
#include
#include
#define STR_SIZE 256
//===========================================================
int matchndots(const char *text, const char *dstr, int len)
{
while(len&&*text&&*dstr&&(*text==*dstr || *dstr=='.')){
text++;
dstr++;
len--;
}
if(!len)
return 1;
... 阅读全帖 |
|
w******t 发帖数: 16937 | 3 分特,想看专业的?
看这个。声明:因为网络安全原因,我删去了一些必须删去的内容。
http://schema.org/WebPage">Google
|
|