摘要:
线程 1.1 线程概述 1.2 线程常用API 线程方法使用 创建线程 #include <pthread.h> int pthread_create(pthread_t *restrict tidp, const pthread_attr_t *restrict attr, void *(*sta 阅读全文
摘要:
C++连接SqlServer 连接外加查询 sqlConnection.h #pragma once #ifndef SQLCONNECTION_H #define SQLCONNECTION_H #include <iostream> #include <windows.h> #include < 阅读全文
摘要:
权限管理设计 布局设置 accessEnum.ts const ACCESS_ENUM = { NOT_LOGIN: "notLogin", USER: "user", ADMIN: "admin", }; export default ACCESS_ENUM; checkAccess.ts 这个用 阅读全文
摘要:
安装基础软件 0.不能联网处理 重启网络服务 service network restart 查看报错信息,如果正常就ping www.baidu.com看是否通,如果通了不用管 journalctl -xe 0.将networkmanager服务停了 systemctl stop NetworkM 阅读全文
摘要:
# vue多选框 ## 多选框(选中传id) ### 效果图 ![image](https://img2023.cnblogs.com/blog/2930662/202307/2930662-20230731171002222-337951379.png) 点击确定后传入后台id ![image]( 阅读全文
摘要:
## c#定时执行 ![image](https://img2023.cnblogs.com/blog/2930662/202307/2930662-20230727093950702-1847880426.png) 这个是毫米级,一毫秒执行一次 ![image](https://img2023.c 阅读全文
摘要:
# 工厂+策略+注册 ``` class VideoFactory(object): def __init__(self): self.video = {} def register_video(self, name, video): self.video[name] = video def cre 阅读全文
摘要:
## c#回车键 输入框,如果普通的不能输入就用 ![image](https://img2023.cnblogs.com/blog/2930662/202307/2930662-20230725131526216-387380056.png) 可以设置几个false,就和普通的输入框一样了 ![i 阅读全文
摘要:
# 电工基础 ## 工厂用电 ### 工厂三相电-380v,,220v 黄绿红 蓝--地线 L1,L2,L3 两两都是380V ![image](https://img2023.cnblogs.com/blog/2930662/202307/2930662-20230721092702947-348 阅读全文
摘要:
常用 设计一个居中的代码 <template> <el-container class="container"> <el-card class="box-card"> </el-card> </el-container> </template> <script> export default { n 阅读全文