上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 128 下一页
摘要: C: #include <string.h> 提供字符串操作函数 C++: #include <string> 提供一个字符串类,string 阅读全文
posted @ 2021-07-20 12:06 朱小勇 阅读(112) 评论(0) 推荐(0) 编辑
摘要: 1、string转char* ①、string.c_str()返回一个以'\0'结尾的字符数组; ②、string.data()仅返回字符串内容,而不含有结束符'\0'。 2、char数组转string char ch[]="hello world!"; string str(ch);或者 stri 阅读全文
posted @ 2021-07-20 11:39 朱小勇 阅读(52) 评论(0) 推荐(0) 编辑
摘要: 1、头文件 #ifndef MAINWINDOW_H #define MAINWINDOW_H #include <QMainWindow> #include <QDebug> #include <QDomDocument> using namespace std; namespace Ui { c 阅读全文
posted @ 2021-07-19 18:04 朱小勇 阅读(402) 评论(0) 推荐(0) 编辑
摘要: 1、C++给我们typedef了很多原子变量 /// atomic_bool typedef atomic<bool> atomic_bool; /// atomic_char typedef atomic<char> atomic_char; /// atomic_schar typedef at 阅读全文
posted @ 2021-07-19 18:01 朱小勇 阅读(1402) 评论(0) 推荐(0) 编辑
摘要: 如下: 优先级 运算符 名称或含义 使用形式 结合方向 说明 1 [] 数组下标 数组名[常量表达式] 左到右 () 圆括号 (表达式)/函数名(形参表) . 成员选择(对象) 对象.成员名 -> 成员选择(指针) 对象指针->成员名 2 - 负号运算符 -表达式 右到左 单目运算符 (类型) 强制 阅读全文
posted @ 2021-07-18 17:39 朱小勇 阅读(177) 评论(0) 推荐(0) 编辑
摘要: 总流程: 1.预处理(Preprocessing) 预处理用于将所有的#include头文件以及宏定义替换成其真正的内容; 将hello.c预处理输出hello.i文件 2.编译(Compilation) 将经过预处理之后的程序转换成特定汇编代码(assembly code)的过程; 在这个阶段中, 阅读全文
posted @ 2021-07-18 16:39 朱小勇 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <stdio.h> #include <string.h> #define N 1024 int main(int argc, char* argv[]) { FILE* fp; fp = fopen("file.txt", "w"); if(!fp){ printf("f 阅读全文
posted @ 2021-07-17 14:46 朱小勇 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 一、C语言: 1、输入 ①、scanf 遇到空格、回车和Tab键停止; 自动在输入字符串末尾加结束符; #include <stdio.h> int main(void){ int a,b,c; printf("input a,b,c\n"); scanf("%d%d%d",&a,&b,&c); p 阅读全文
posted @ 2021-07-17 14:15 朱小勇 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 代码: #include <stdio.h> #include <string.h> #define N 1024 char* fun(char* str, int m) { int totalLength = strlen(str); static char ret[N]; memset(ret, 阅读全文
posted @ 2021-07-17 14:01 朱小勇 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 原则: 能否正常返回这个值,要看这个值的内容或指向的内容是否被回收,导致空指针或者真实内容被擦除。【一旦返回值有指针或者地址,就需要着重考虑,而返回一个值是一般都可以的,可参考C++的临时变量】 下面对不同情况说明。 1、返回指向常量的指针 #include <stdio.h> char *retu 阅读全文
posted @ 2021-07-17 13:33 朱小勇 阅读(469) 评论(0) 推荐(0) 编辑
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 128 下一页