上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页
摘要: C++基础入门 1 C++初识 1.1 第一个C++程序 编写一个C++程序总共分为4个步骤 创建项目 创建文件 编写代码 运行程序 1.1.1 创建项目 ​ Visual Studio是我们用来编写C++程序的主要工具,我们先将它打开 1.1.2 创建文件 右键源文件,选择添加->新建项 给C++ 阅读全文
posted @ 2022-04-18 10:45 xiondun 阅读(104) 评论(0) 推荐(0) 编辑
摘要: pyd文件生成 安装easycython库 pip install easycython test.py def test(): print("调用成功") main.py import test test.test() test.py文件重命名为:test.pyx 终端运行命令 easycytho 阅读全文
posted @ 2022-04-15 09:47 xiondun 阅读(998) 评论(0) 推荐(0) 编辑
摘要: from concurrent.futures import ThreadPoolExecutorwith ThreadPoolExecutor(max_workers=processes_num) as thread: thread.submit(func, x,y,z) threading.Th 阅读全文
posted @ 2022-04-12 17:19 xiondun 阅读(48) 评论(0) 推荐(0) 编辑
摘要: 在python3.8之后函数参数中允许出现/和*号,/用来指明某些函数形参必须使用位置参数而非关键字参数的形式,*出现在函数参数中第一种含义可以表示为可变参数 ,一般写作*args;对于单独出现在参数中的*参数,则表示,*后面的参数必须为关键字参数的形式,接下来详细说下该用法: 1 /参数的用法 如 阅读全文
posted @ 2022-04-12 14:11 xiondun 阅读(2482) 评论(1) 推荐(2) 编辑
摘要: 解决ubuntu20.04下vi编辑器方向键和退格键问题 本文链接:https://blog.csdn.net/zhoupenghui168/article/details/123499092 版权 在ubuntu中,进入vi命令的插入模式,发现方向键分别对应ABCD以及退格键失效,按方向键不能移动 阅读全文
posted @ 2022-04-11 13:03 xiondun 阅读(327) 评论(0) 推荐(0) 编辑
摘要: xshell4连接ubuntu20.04失败,提示“找不到匹配的key exchange算法“ 本文链接:https://blog.csdn.net/qq_24814027/article/details/120944054 对比ubuntu18.04,ubuntu20.04的key exchang 阅读全文
posted @ 2022-04-09 11:32 xiondun 阅读(4032) 评论(0) 推荐(0) 编辑
摘要: mklink /J "D:\Program Files\JetBrains" "C:\Program Files\JetBrains" 1.mklink命令 格式:MKLINK [[/D] | [/H] | [/J]] 链接名称 目标 语法介绍: win+r-->cmd-->输入mklink 命令区 阅读全文
posted @ 2022-03-26 10:39 xiondun 阅读(619) 评论(0) 推荐(0) 编辑
摘要: [ 鲁大师 ] 软件: 鲁大师 6.1022.3280.317 时间: 2022-03-24 14:54:14 软件: http://www.ludashi.com [ 概览 ] 电脑型号 英特尔 X99 台式电脑 操作系统 Windows 11 专业版 64位(Version 21H2 / Dir 阅读全文
posted @ 2022-03-24 14:57 xiondun 阅读(3763) 评论(0) 推荐(0) 编辑
摘要: typora收费了,在这里,博主提供最后一个免费版下载,地址如下,顺便把typora导入和导出word时需要的工具也一同提供。最看不惯免费用着别人的软件,还搞引流的垃圾网站和公众号。地址如下 https://wws.lanzouo.com/b0d9o1i6h密码:9mba 如果有帮助到且有帐号的园友 阅读全文
posted @ 2022-03-21 13:24 xiondun 阅读(120) 评论(0) 推荐(0) 编辑
摘要: Docker容器开机自动启动 部署项目服务器时,为了应对停电等情况影响正常web项目的访问,会把Docker容器设置为开机自动启动。 在使用docker run启动容器时,使用--restart参数来设置: # docker run -m 512m --memory-swap 1G -it -p 5 阅读全文
posted @ 2022-03-04 10:18 xiondun 阅读(2968) 评论(0) 推荐(1) 编辑
上一页 1 ··· 5 6 7 8 9 10 11 12 13 ··· 29 下一页