码迷,mamicode.com
首页 >  
搜索关键字:visual studio code    ( 125086个结果
【C++ Primer 第16章】重载与模板
编写重载模板 1 #include <iostream> 2 #include <sstream> 3 #include <string> 4 using namespace std; 5 6 template <typename T> 7 string debug_rep(const T &t) ...
分类:编程语言   时间:2021-06-28 20:25:45    阅读次数:0
Echarts Demos
1、柱状图:https://www.makeapie.com/editor.html?c=xhmv-1o6XS ...
分类:其他好文   时间:2021-06-28 20:14:35    阅读次数:0
纳米猫猫(欧拉函数)
#include <bits/stdc++.h> using namespace std; using ll = long long ; ll euler(ll n){ ll k=n; for(ll i=2;i*i<=n;i++) if(n%i==0){ k-=k/i; while(n%i==0)n ...
分类:其他好文   时间:2021-06-28 20:14:20    阅读次数:0
使用pyinstaller打包生成exe
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)
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
Springboot学习(一) 自动配置特性
一、 在主程序中配置 @SpringBootApplication 相当于: //@SpringBootConfiguration //@EnableAutoConfiguration //@ComponentScan("spring.main.spring"), //SpringBootAppli ...
分类:编程语言   时间:2021-06-28 19:53:22    阅读次数:0
Java面向对象复习
Java面向对象复习 1.类像一个模板。 2.好的编程习惯会让代码看上去更清爽,易读,容易维护 比如类的第一个字母大写。 3.属性的类型可以是基本类型,比如int整数,float 浮点数 也可以是类类型,比如String 字符串。 4.属性名称一般来说,都是小写,比如name。 如果有多个单词组成, ...
分类:编程语言   时间:2021-06-28 19:50:59    阅读次数:0
快乐的一天从AC开始 | 20210627 | CF1541B
题目链接 AC代码 每次看到形如$a_i + a_j = i + j$这种公式,总想着把带$i$的划到一边,带$j$的划到一遍,然后map乱搞。但是这题并不是这样搞的。 注意到一个非常重要的条件,就是$a$中元素是不重复的。所以可以用一个数组$p$记录$x$在$a$中的下标。 然后对于每一个$a_i ...
分类:其他好文   时间:2021-06-28 19:48:44    阅读次数:0
[部署日记]GO在Visual Studio Code初次运行时提示go: go.mod file not found in current directory or any parent directory; see 'go help modules'
我裂开,一波未平一波又起... 按照MS教程上填写 package main import "fmt" func main() { fmt.Println("Hello World!") } 然后无脑搜索教程,其中修改了launch.json无济于事,按理来说新手入门的话应该VSC的配置文件是不需要 ...
分类:其他好文   时间:2021-06-28 19:44:16    阅读次数:0
125086条   上一页 1 ... 15 16 17 18 19 ... 12509 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!