06 2022 档案

system verilog与C语言的接口(包含使用方法以及实例)
摘要:资料来源 (1) sv绿皮书; (2) vcs user guide; (3) https://www.cnblogs.com/studyforever/p/5169243.html (4) system verilog与功能验证 (5) https://www.cnblogs.com/GrootS 阅读全文

posted @ 2022-06-30 14:30 知北游。。 阅读(3180) 评论(0) 推荐(0) 编辑

【RUNOOB】C语言学习之指针
摘要:资料来源: (1) runoob; (2) C语言程序设计; 注1:Runoob中对于指针的讲述比较清晰简单,摘录出来(后续补充指针与结构体,指针与函数参数); 1.指针与变量的内存位置 (1) 每个变量都有一个内存位置,它表示了一个在内存中的地址,通过"&运算符+变量名"可以访问变量地址; (2) 阅读全文

posted @ 2022-06-30 11:35 知北游。。 阅读(359) 评论(0) 推荐(0) 编辑

【vscode】linux下vscode的使用
摘要:注1:vscode在查看project时,非常好用,可以导入整个project并查看其中文件,通过插件的安装还可以实现跳转到当前函数定义处的功能; 注2:可以了解下source insight; 补充阅读资料: (1) https://www.runoob.com/w3cnote/vscode-tu 阅读全文

posted @ 2022-06-24 09:46 知北游。。 阅读(1762) 评论(0) 推荐(0) 编辑

expect语言使用之自动切换账户或自动登录远程服务器
摘要:资料来源: (1) https://baike.baidu.com/item/expect/4598715?fr=aladdin (2) https://blog.csdn.net/gsjthxy/article/details/123441100?ops_request_misc=%257B%25 阅读全文

posted @ 2022-06-20 09:52 知北游。。 阅读(161) 评论(0) 推荐(0) 编辑

【RUNOOB】python学习之python3实例以及知识点解析
摘要:1.python数字求和 1 #!/usr/bin/python3 2 3 num1=input('input first number:') 4 num2=input('input second number:') 5 6 sum=float(num1) + float(num2) 7 print 阅读全文

posted @ 2022-06-17 13:20 知北游。。 阅读(351) 评论(0) 推荐(0) 编辑

【RUNOOB】c语言学习之简单示例分析与C编译器简介
摘要:1.简单示例与分析 1 #include <stdio.h> 2 int main() 3 { 4 /* 我的第一个 C 程序 */ 5 printf("Hello, World! \n"); 6 7 return 0; 8 } (1) 所有的 C 语言程序都需要包含 main() 函数。 代码从  阅读全文

posted @ 2022-06-17 09:33 知北游。。 阅读(223) 评论(0) 推荐(0) 编辑

【git-RUNOOB】git笔记-git标签,git远程仓库以及相关操作【远程仓库操作需实战】
摘要:1.git标签 (1) 如果希望记住某个特别的提交,可以使用git tag给它打上标签; 1 //使用示例 2 git tag -a v1.0 3 4 其中,-a选项意为"创建一个带注解的标签",当执行git tag -a命令时,git会打开编辑器用于填写标签注解; 注1:可以使用git tag - 阅读全文

posted @ 2022-06-10 22:07 知北游。。 阅读(46) 评论(0) 推荐(0) 编辑

【git-RUNOOB】git笔记(和mecurial有些相似)-git配置,工作区,暂存区,版本库,基本操作及分支管理
摘要:资料来源 (1) 芯片开发必备工具 | 版本控制系统,该用Git还是SVN? (qq.com) (2) runoob.com (3) http://git-scm.com/docs (4) http://gitref.justjavac.com/index.html (5) 【未阅】https:// 阅读全文

posted @ 2022-06-10 15:51 知北游。。 阅读(73) 评论(0) 推荐(0) 编辑

【perl】遍历当前目录下所有文件
摘要:1 #!/usr/bin/perl 2 use strict; 3 use Getopt::Long; 4 5 my $dir_path; 6 my $file_output; 7 8 GetOptions( 9 'dir_path|dir=s'=>\$dir_path, 10 'file_outp 阅读全文

posted @ 2022-06-09 17:10 知北游。。 阅读(178) 评论(0) 推荐(0) 编辑

【RUNOOB】Ruby类和对象
摘要:1.在ruby中定义类 (1) 类以关键字class开始,后跟类的名称,类名的首字母应该大写; (2) 使用关键字end终止一个类,类中的所有数据成员都是介于类定义和end关键字之间; 1 #示例1 2 class Customer 3 end 2.ruby类中的变量 2.1 局部变量 (1) 局部 阅读全文

posted @ 2022-06-05 21:45 知北游。。 阅读(39) 评论(0) 推荐(0) 编辑

< 2025年3月 >
23 24 25 26 27 28 1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31 1 2 3 4 5

导航

统计

点击右上角即可分享
微信分享提示