摘要:
界面图: 完整代码: [数据库交互和一些工具类等忽略 只看逻辑] using System; using System.Collections.Generic; using System.Configuration; using System.Data; using System.Drawing; 阅读全文
摘要:
1. const 修饰指针 #include <iostream> using namespace std; int main() { // 1、const 修饰指针 指针常量 int a = 10; int b = 20; int* const p = &a;//指针常量 ==>需要带上& 视为引 阅读全文