Bootstrap

printf函数的 %s 与 %c

今天在研究C++的时候在Mac上随手写了些例子,结果发现一个关于printf很有趣的现象:

先定义一个模板:

template<tyepname type>class data_count{
    type a;
    type b;
public:
    data_count(type A,type B):a(A),b(B){}
    type add(){return a+b;}
    type sub(){return a-b;}
}


使用一下这模板:

data_count<char> c('a','b');
printf("check it %c",c.add());

一切正常,于是我突发奇想改了一下printf语句:

printf("check it %s",c.add());

系统直接报了 EXC_BAD_ACCESS,非法访问内存?

我不确定是否因为模板类的问题,所以再试了一下:

printf("check it %s",'c');

此时clang报出警告: Format specifies type 'char*' but the argument has type 'char'     (clan

;