09 2023 档案

摘要:https://www.linuxidc.com/Linux/2019-04/158177.htm sudo apt search python3-tk sudo apt install python3-tk 阅读全文
posted @ 2023-09-26 20:41 King--jin 阅读(280) 评论(0) 推荐(0)
摘要:https://zhuanlan.zhihu.com/p/56943330 阅读全文
posted @ 2023-09-13 23:56 King--jin 阅读(27) 评论(0) 推荐(0)
摘要:systemC 源码获取: gitee上获取:https://gitee.com/soc-esl/systemc?_from=gitee_search git clone git@gitee.com:soc-esl/systemc.git systemC 编译安装 进入到systemc目录切换到2. 阅读全文
posted @ 2023-09-13 23:55 King--jin 阅读(153) 评论(0) 推荐(0)
摘要:python默认提供的列表sort方法,仅支持列表的元素排序。若想实现结构提排序,可参考下面方法: 1、使用 lambda 表达式 1 class struct: 2 def __init__ (self): 3 self.a = 0 4 self.b = 'a' 5 6 struct_list = 阅读全文
posted @ 2023-09-12 21:16 King--jin 阅读(271) 评论(0) 推荐(0)
摘要:命令格式: git push <远程主机名> <本地分支名>:<远程分支名> 通常用法: git push origin HEAD:远程分支名 1、创建远程不存在的分支 git push origin HEAD:新建分支名 2、删除远程存在的分支 git push origin :123 本地分支名 阅读全文
posted @ 2023-09-11 21:29 King--jin 阅读(1269) 评论(0) 推荐(0)
摘要:用来修饰父类中的函数: 1、修饰父类中的普通函数: 1 #include <iostream> 2 #include <string> 3 #include <stdlib.h> 4 5 using namespace std; 6 7 class base 8 { 9 public: 10 voi 阅读全文
posted @ 2023-09-10 23:09 King--jin 阅读(107) 评论(0) 推荐(0)
摘要:#include 和 #include <iostream.h>区别 1. #include 是C++调用头文件的使用方式,这种情况下需要加上using namespace std;指定命名空间 2. #include <iostream.h> C++保留了C的这种写法,这种不需要增加命名空间指定 阅读全文
posted @ 2023-09-09 20:46 King--jin 阅读(328) 评论(0) 推荐(0)
摘要:# 关闭预览模式 ###### 打开设置,搜索enable preview,关闭该选项 ![image](https://img2023.cnblogs.com/blog/1297322/202309/1297322-20230907215216800-1670840160.png) 阅读全文
posted @ 2023-09-07 21:53 King--jin 阅读(318) 评论(0) 推荐(0)
摘要:# 1、关闭自动检测文件功能 ###### 设置搜索detect Indentation,取消 ![image](https://img2023.cnblogs.com/blog/1297322/202309/1297322-20230905221709206-2019983386.png) # 2 阅读全文
posted @ 2023-09-05 22:21 King--jin 阅读(1455) 评论(0) 推荐(0)
摘要:# 效果 ![image](https://img2023.cnblogs.com/blog/1297322/202309/1297322-20230905220331469-458115845.png) # 设置 ###### 在设置里面搜索 bracket pair ![image](https 阅读全文
posted @ 2023-09-05 22:07 King--jin 阅读(469) 评论(0) 推荐(0)