上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页
摘要: 也就是说,给定以下声明,则函数调用如下所示: double source[5] = {1.1, 2.2, 3.3, 4.4, 5.5}; double target1[5]; double target2[5]; double target3[5]; copy_arr(target1, source 阅读全文
posted @ 2022-10-13 20:25 wshidaboss 阅读(149) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <windows.h> using namespace std; bool str_cat(char* dest, int len, const char* st1, const char* st2) { 阅读全文
posted @ 2022-10-09 16:46 wshidaboss 阅读(178) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <windows.h> using namespace std; bool find_max_min(int a[], int len, int* max, int* min) { if (len < 1) 阅读全文
posted @ 2022-10-09 14:23 wshidaboss 阅读(40) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <windows.h> using namespace std; void swap(int* a, int* b) { int tmp = *a; *a = *b; *b = tmp; } int mai 阅读全文
posted @ 2022-10-08 16:52 wshidaboss 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 设指针p1指向初始字符串s,再新建一个字符串tmp用来存放逆转后的字符。此时可以把p1和tmp看成两条链表,指针p2为实现逆转的中转站,p2的长度为tmp和s的长度之和,接下来就通过链表的特性把p1和p2的值进行逆转。 #include <iostream> #include <string> #i 阅读全文
posted @ 2022-10-04 16:52 wshidaboss 阅读(113) 评论(0) 推荐(0) 编辑
摘要: 语法:const Type& name = var; const 引用让变量拥有只读属性 1)const & int e 相当于 const int * const e 2)普通引用 相当于 int *const e1 3)当使用常量(字面量)对const引用进行初始化时,C++编译器会为常量值分配 阅读全文
posted @ 2022-09-23 15:17 wshidaboss 阅读(106) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> #include <string> #include <windows.h> using namespace std; //方式一 使用指针 void swap1(int* a, int* b) { //指针作为函数的参数 int tmp = *a; *a = 阅读全文
posted @ 2022-09-22 17:52 wshidaboss 阅读(1098) 评论(0) 推荐(0) 编辑
摘要: void => 空类型 void* => 空类型指针,只存储地址的值,丢失类型,无法访问,要访问其值,我们必须对这个指针做出正确的类型转换,然后再间接引用指针。 所有其它类型的指针都可以隐式自动转换成void类型指针,反之需要强制转换。 #include <iostream> #include <s 阅读全文
posted @ 2022-09-22 17:16 wshidaboss 阅读(39) 评论(0) 推荐(0) 编辑
摘要: 创建Student类的对象,并为相应属性赋值,并打印输出各属性值。 class Student{ private long studentId; private int classId; private int age; private String studentName; public long 阅读全文
posted @ 2022-09-22 16:58 wshidaboss 阅读(2416) 评论(0) 推荐(0) 编辑
摘要: 1.for循环:public class test1 { public static void main(String[] args) { int sum=0; for (int i=1;i<=100;i++){ sum+=i; } System.out.println("sum="+sum); } 阅读全文
posted @ 2022-09-18 11:11 wshidaboss 阅读(362) 评论(0) 推荐(0) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 14 下一页