码迷,mamicode.com
首页 >  
搜索关键字:str    ( 67828个结果
如何在引号里面引用宏
#include #include #define MY_STR_LEN 32 #define __MY_FMT_STR(LEN) "%"#LEN"s" #define MY_FMT_STR(LEN) __MY_FMT_STR(LEN) int _tmain(int argc, _TCHAR* argv[]) { char* input = "0123456789abcdef01234...
分类:其他好文   时间:2014-05-15 07:18:11    阅读次数:313
备忘之 拷贝构造函数
//拷贝构造函数,什么时候算是 “合适的时候”,才会合成呢~~~ #include using namespace std; class A { public:     A(char *_str):str(_str),x(0){}     //A(const A&a){cout     //如果没有定义的话,对于类A来说,编译器依然不会合成,因为此时的对象之间的...
分类:其他好文   时间:2014-05-15 05:11:13    阅读次数:334
linux c二级指针的内存分配和使用
#include #include #include #include int main(int argc, char **argv){ /* 这个是给str分配存储字符串地址的空间 */ char **str = (char**)malloc(sizeof(char*)*256); /* 这个是给...
分类:系统相关   时间:2014-05-15 02:05:47    阅读次数:313
C中字符串常见操作
#include #include #include #include #include // #include int main(void){ char str1[]="This is the first string"; char str2[]="That is the other string"; // printf(strcpy(str1,str...
分类:其他好文   时间:2014-05-15 01:39:40    阅读次数:348
java数字字符串累加1的解决方案
近期操作项目遇到这样的问题,研究了下搞出了一个解决方案.//num也可以是在数字字符串里面截取的,比如我有14位的数字字符串前六位是市级,7,8位代表县区,后两位代表乡镇,最后四位是累计+1的,这个时候你就可以根据前10位查出最大的是多少,然后用最大的+1得出新的最大的..//你要+1的字符串Str...
分类:编程语言   时间:2014-05-14 23:03:10    阅读次数:645
字符串转日期
//Processing date     struct tm time; std::string date; char dateBuff[128] = {0}; time.tm_year = atoi(md_date.getString().substr(0,4).c_str()) - 1900; time.tm_mon =  atoi(md_date.getString().subs...
分类:其他好文   时间:2014-05-14 21:52:15    阅读次数:248
leetcode -day 15 Distinct Subsequences
1、 ?? Distinct Subsequences  Given a string S and a string T, count the number of distinct subsequences of T in S. A subsequence of a string is a new string which is formed from the original str...
分类:其他好文   时间:2014-05-14 20:22:58    阅读次数:275
string wstring
//只扩展为wstring,不考虑编码 std::wstringString2WString(conststd::string&str) { std::wstringwstr(str.length(),L‘‘); std::copy(str.begin(),str.end(),wstr.begin()); returnwstr; } //只拷贝低字节至string中 std::stringWString2String(conststd::wstring&ws..
分类:其他好文   时间:2014-05-14 15:58:11    阅读次数:262
HDU--2846--Repository--字典树
#include #include #include #include #include #include using namespace std; struct ssss { ssss *c[26]; int n,v; }*s; void insert(char *str,int v) { int i,j,k,l; ssss *p,*q; p=...
分类:其他好文   时间:2014-05-14 15:06:54    阅读次数:357
编程精粹--编写高质量的C语言代码(2):自己设计并使用断言(一)
即使使用编译程序提供的所有警告设施,编译程序所发现的错误,也只是程序错误中的一小部分。例如 以下一行代码:      strCopy=memecpy(malloc(length),str,length)); 当malloc 调用失败时,返回一个空指针,而memcpy如果没有处理空指针时,程序就会出现错误。编译程序是无法查出 这种或其他类似的错误。同样编译程序也无法查出算法的错误,...
分类:编程语言   时间:2014-05-14 14:11:31    阅读次数:474
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!