上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 130 下一页
摘要: 文章目录 数据库基础(reference links)参考教材 关系型/关系值(与关系,笛卡尔积之间的联系)的例子码/主键/外键/主属性依赖overview依赖函数集实例记号说明(notation) 函数依赖完全依赖部分依赖示例 传递依赖 个人认为 overview for normal form1 阅读全文
posted @ 2024-02-10 21:47 xuchaoxin1375 阅读(59) 评论(0) 推荐(0)
摘要: 文章目录 对于应用商店下载的版本(uwp)对于msi安装版使用mv 的缺少参数的情况 对于应用商店下载的版本(uwp) 大概执行时参数不正确,文件暂时进入到powershell的缓冲区中 您可以尝试在如下目录找找回您的目录/文件(或者使用everything来搜索相应的文件名) %userProfi 阅读全文
posted @ 2024-02-08 10:54 xuchaoxin1375 阅读(22) 评论(0) 推荐(0)
摘要: 文章目录 脚本方法多开微信powershell方法简化版本(核心部分) bat脚本将脚本作为快捷方式启动(暴力多开) 效果使用沙盒其他方法 脚本方法多开微信 这里的方法有一定的局限性,并不是完美的方案 powershell方法 适用于带有powershell的windows系统,比如win10以及之 阅读全文
posted @ 2024-02-08 01:17 xuchaoxin1375 阅读(91) 评论(0) 推荐(0)
摘要: //program 12.6.2.cpp 封闭类的结构函数和析构函数的调用顺序. #include <iostream> using namespace std; class CTyre { public: CTyre() { cout << "CTyre constructor" << endl; 阅读全文
posted @ 2024-02-07 18:19 xuchaoxin1375 阅读(18) 评论(0) 推荐(0)
摘要: //program 12.6.1.cpp 封闭类 #include <iostream> using namespace std; class CTyre //轮胎类 { private: int radius; //半径 int width; //宽度 public: /*非封闭类也可以使用 初始 阅读全文
posted @ 2024-02-07 18:19 xuchaoxin1375 阅读(51) 评论(0) 推荐(0)
摘要: 文章目录 更多详情参看官方教程:直接使用google Material Design 中的图标资源adroid 8.0:(foreground+backgroud)输出: 回到项目预览: 更多详情参看官方教程: https://developer.android.com/studio/write/i 阅读全文
posted @ 2024-02-04 14:45 xuchaoxin1375 阅读(21) 评论(0) 推荐(0)
摘要: //program 18.2.3.cpp 可变长数组类模板 #include <iostream> #include <cstring> using namespace std; /*类模板CArray*/ template <class T>//T可以被实例化为int/double/float; 阅读全文
posted @ 2024-02-03 19:01 xuchaoxin1375 阅读(45) 评论(0) 推荐(0)
摘要: 文章目录 搜索resize page 搜索resize page ![在这里插入图片描述](https://img-blog.csdnimg.cn/202106 调整长宽: 阅读全文
posted @ 2024-01-30 11:24 xuchaoxin1375 阅读(26) 评论(0) 推荐(0)
摘要: #include<stdio.h> int main() { /*整除号:int/int*/ printf("%d\n", -3 / 2);//打印-1; printf("%d\n", -3 / 7);//打印:0; /*强制类型转化为(int) 可将实数提取整数部分处理(对负数向上取整,对正数向下 阅读全文
posted @ 2024-01-24 15:48 xuchaoxin1375 阅读(12) 评论(0) 推荐(0)
摘要: package collection; import java.util.LinkedList;/*同样是implements java.util.Link*/ import java.util.ArrayList;/*(基于数组实现的列表类)implements java.util.List->e 阅读全文
posted @ 2024-01-23 17:44 xuchaoxin1375 阅读(20) 评论(0) 推荐(0)
上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 130 下一页