以下来自网络:#define Conn(x,y) x##y#define ToChar(x) #@x#define ToString(x) #xx##y表示什么?表示x连接y,举例说:int n = Conn(123,456); 结果就是n=123456;char* str = Conn("asdf...
分类:
其他好文 时间:
2015-09-21 10:35:08
阅读次数:
161
第二个样例是3 3 1 2 4 1 3 5 2 3 6题解:http://blog.csdn.net/thy_asdf/article/details/47355475code: 1 #include 2 #include 3 #include 4 #include 5 #include 6 #de...
分类:
其他好文 时间:
2015-08-12 18:49:20
阅读次数:
90
点击打开链接
Problem Description
Generally speaking, there are a lot of problems about strings processing. Now you encounter another such problem. If you get two strings, such as “asdf” and “sdfg”, the...
分类:
编程语言 时间:
2015-08-11 21:36:16
阅读次数:
154
#include#include int main(){char* const pc ="asdf";//pc ="dfgh"; error: assignment of read-only variable `pc'*pc ='b';*(pc+1)='c';//*pc ++ ='y'; erro....
分类:
其他好文 时间:
2015-07-29 18:41:22
阅读次数:
143
一.建立示例程序hello world 1.编写asdf 文件hello.asd [plain]?view plaincopy <span?style="font-size:18px;">(defpackage?:hello-system?(:use?#:asdf?#:cl))?? ?? (in-package?:hello-system)??...
分类:
其他好文 时间:
2015-07-28 11:11:34
阅读次数:
359
1、变量读取例:echo $PATH echo $(PATH)2、变量赋值:aa=asdf 注:等号左右没有空格3、查看所有环境变量:env4、当前线程的ID:echo $$5、自定义变量转为环境变量:export 变量名称(目的:子进程中该变量仍有效)6、read atest this is a ...
分类:
系统相关 时间:
2015-07-21 12:21:44
阅读次数:
180
项目状态报告 项目摘要 报告日期项目名称编制人[选择日期][项目]chaoren状态摘要 [要替换占位符文本(例如此文本),只需单击它并开始键入。准备好添加数字吗?没问题!双击页面上看到联系人信息的页眉区域,操作即可。] 项目概述 任务完成百分比截止日期驱动因素备注预算概览 类别花费总额百分比是否正...
分类:
其他好文 时间:
2015-07-07 08:16:33
阅读次数:
263
写一篇好博文很难为了更好的理解指针中几个不容易清楚的概念:指针数组,数组指针,函数指针,指针函数,利用函数指针回调函数。1.使用指针数组,用不定长的字符串初始化,最后一个字符串以@结尾,输出所有的字符串,并删除最后的@字符。例如:输入:aaaaa bbbbb abcdefg asdf@输出:aaaa...
分类:
编程语言 时间:
2015-06-04 18:50:02
阅读次数:
210
文件中有很多字段:dd ssdf df aaa="100"dd ssdf df aaa="200"asdf sdf sdf aaa="700"现在我就想替换dd ssdf df aaa="×××" 为dd ssdf df aaa="NUMBER"%s/\(dd ssdf df\) aaa=\"[0-...
分类:
系统相关 时间:
2015-05-18 20:09:18
阅读次数:
132
var?str?=?‘asdf‘;? var?str1?=?new?String(‘asdf‘); typeof?str;//"string" typeof?str1;//"object" Object.prototype.toString.cal(str);?//"[object?String]" Object.prototype.toString.call(str...
分类:
Web程序 时间:
2015-05-06 00:04:55
阅读次数:
143