码迷,mamicode.com
首页 >  
搜索关键字:java基础 io object流 串行化    ( 180413个结果
java基础Ⅱ
java基础Ⅱ 包机制 为了更好地组织类 语法格式: package ... 利用公司域名倒置作为包名 导入包: import ... 通配符*: import java.lang.*; 生成javadoc: tools/generate javadoc Scanner 创建扫描器对象, 接受键盘数 ...
分类:编程语言   时间:2021-02-17 15:07:55    阅读次数:0
最小生成树 : Kruskal
https://www.acwing.com/problem/content/1143/ \(裸题\) #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); c ...
分类:其他好文   时间:2021-02-17 14:58:39    阅读次数:0
最小生成树 : 最大边
https://www.acwing.com/problem/content/1144/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-17 14:57:50    阅读次数:0
狂神Java基础语法学习
Java 基础语法 标识符和关键字 Java所有的组成部分都需要名字。类名、变量名以及方法名都被称为标识符。 所有标识符都应该以字母、美元符或下划线组成 关键字: abstract assert boolean break byte case catch char class const conti ...
分类:编程语言   时间:2021-02-17 14:44:19    阅读次数:0
Golang一次性读取小文件
使用"os/ioutil"包中的ReadFile方法, func ReadFile(path string) ([]byte, err) package main import ( "fmt" "io/ioutil" ) func main(){ // ioutil包中的ReadFile,一次性读取 ...
分类:其他好文   时间:2021-02-17 14:34:50    阅读次数:0
液位量筒
1.效果如下: 预览页: https://volodyan.github.io/vue3_level_dh_echars_preview/#/2.代码如下:echartsDemo.vue <template> <div class="chart"></div> </template> <script ...
分类:其他好文   时间:2021-02-16 12:10:59    阅读次数:0
「Jenkins」- GitLab Plugin @20210212
插件介绍 此插件是一个构建触发器(Build Trigger),允许在 GitLab 中发生推送代码或创建合并请求时,触发 Jenkins 来执行构建任务。 插件站点:https://plugins.jenkins.io/gitlab-plugin 安装插件 Manage Jenkins => Ma ...
分类:其他好文   时间:2021-02-16 11:58:01    阅读次数:0
java-中文字符
用FileInputStream 字节流正确读取中文 1 package IO流; 2 3 import java.io.File; 4 import java.io.FileInputStream; 5 import java.io.IOException; 6 7 public class 读取 ...
分类:编程语言   时间:2021-02-16 11:55:08    阅读次数:0
git工具 -- repo
资料1: https://wladimir-tm4pda.github.io/source/git-repo.html sync命令: repo sync [project-list ] Downloads new changes and updates the working files in y ...
分类:其他好文   时间:2021-02-15 12:26:44    阅读次数:0
spring boot集成swagger2
spring boot集成swagger2 pom依赖 <dependency> <groupId>io.springfox</groupId> <artifactId>springfox-swagger2</artifactId> <version>2.6.1</version> </depend ...
分类:编程语言   时间:2021-02-15 12:24:14    阅读次数:0
180413条   上一页 1 ... 39 40 41 42 43 ... 18042 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!