layout: post title: 将tkinter打包生成exe subtitle: date: 2020-05-30 author: Dapenson header-img: img/post-bg-universe.jpg catalog: true tags: - Python - tk ...
分类:
其他好文 时间:
2021-06-28 20:10:21
阅读次数:
0
Java在Windows安装及(环境变量的设置(开始\控制面板\系统和安全\系统)) 下载教程:https://blog.csdn.net/houwanle/article/details/81773832 下载链接:http://www.oracle.com/technetwork/java/ja ...
分类:
编程语言 时间:
2021-06-28 20:01:21
阅读次数:
0
fork 是一个系统调用,流程的最后会在 sys_call_table 中找到相应的系统调用 sys_fork。 SYSCALL_DEFINE0(fork) { ...... return _do_fork(SIGCHLD, 0, 0, NULL, NULL, 0); } long _do_fork ...
分类:
系统相关 时间:
2021-06-28 20:00:09
阅读次数:
0
一、 在主程序中配置 @SpringBootApplication 相当于: //@SpringBootConfiguration //@EnableAutoConfiguration //@ComponentScan("spring.main.spring"), //SpringBootAppli ...
分类:
编程语言 时间:
2021-06-28 19:53:22
阅读次数:
0
package main import ( "fmt" "math/rand" "sync" "time" ) var wg sync.WaitGroup func f1(i int) { wg.Done() fmt.Println(i) } func main() { rand.Seed(time ...
分类:
其他好文 时间:
2021-06-28 19:53:07
阅读次数:
0
Java面向对象复习 1.类像一个模板。 2.好的编程习惯会让代码看上去更清爽,易读,容易维护 比如类的第一个字母大写。 3.属性的类型可以是基本类型,比如int整数,float 浮点数 也可以是类类型,比如String 字符串。 4.属性名称一般来说,都是小写,比如name。 如果有多个单词组成, ...
分类:
编程语言 时间:
2021-06-28 19:50:59
阅读次数:
0
题目链接 AC代码 每次看到形如$a_i + a_j = i + j$这种公式,总想着把带$i$的划到一边,带$j$的划到一遍,然后map乱搞。但是这题并不是这样搞的。 注意到一个非常重要的条件,就是$a$中元素是不重复的。所以可以用一个数组$p$记录$x$在$a$中的下标。 然后对于每一个$a_i ...
分类:
其他好文 时间:
2021-06-28 19:48:44
阅读次数:
0
我裂开,一波未平一波又起... 按照MS教程上填写 package main import "fmt" func main() { fmt.Println("Hello World!") } 然后无脑搜索教程,其中修改了launch.json无济于事,按理来说新手入门的话应该VSC的配置文件是不需要 ...
分类:
其他好文 时间:
2021-06-28 19:44:16
阅读次数:
0
1.题目如下 2.解题代码 #include<stdio.h> int majority(int a[],int n){ int i,count=1,c=a[0]; for(i=1;i<n;i++) { if(a[i]==c) count++; else { if(count>0) count--; ...
分类:
其他好文 时间:
2021-06-28 19:33:29
阅读次数:
0