码迷,mamicode.com
首页 >  
搜索关键字:java基础 io object流 串行化    ( 180413个结果
Educational Codeforces Round 102 (Rated for Div. 2)E题(分层图、最短路)
https://codeforces.com/contest/1473/problem/E vector存图: 1 #define bug(x) cout<<#x<<" is "<<x<<endl 2 #define IO std::ios::sync_with_stdio(0),cin.tie(0 ...
分类:其他好文   时间:2021-02-15 12:17:20    阅读次数:0
05 | 管理系统前端模板 | 谷粒
一、vue-element-admin 1、简介 而vue-element-admin是基于element-ui 的一套后台管理系统集成方案。 **功能:**https://panjiachen.github.io/vue-element-admin-site/zh/guide/#功能 **GitH ...
分类:其他好文   时间:2021-02-15 12:12:46    阅读次数:0
Java 监听文件系统变化
Java 监听文件系统变化 使用Apache Commons-io可以实现,原理也是通过另起一个线程按照固定频率扫描目录。 1.继承FileAlterationListenerAdaptor 重写FileAlterationListenerAdaptor的方法可以快速实现自己想要的功能。包括对子目录 ...
分类:编程语言   时间:2021-02-15 12:00:38    阅读次数:0
The Meta-Object System Signals & Slots
The Meta-Object System | Qt Core 6.0.1 https://doc.qt.io/qt-6/metaobjects.html Signals & Slots | Qt Core 6.0.1 https://doc.qt.io/qt-6/signalsandslots. ...
分类:Web程序   时间:2021-02-15 11:54:10    阅读次数:0
单源最短路 : 多起点
https://www.acwing.com/problem/content/1139/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:52    阅读次数:0
单源最短路 : 拆点
https://www.acwing.com/problem/content/1133/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:38    阅读次数:0
单源最短路 : 计数
https://www.acwing.com/problem/content/1136/ #include <bits/stdc++.h> using namespace std; #define IO ios::sync_with_stdio(false);cin.tie(0); cout.tie ...
分类:其他好文   时间:2021-02-15 11:53:26    阅读次数:0
第8章 File I/O,File类操作文件的属性
1.文件 1.1.什么是文件? 答:文件可认为是相关记录或放在一起的数据的集合 1.2.文件- -般存储在哪里? 答: 磁盘,硬盘,文件夹 1.3.JAVA程序如何访向文件属性? JAVA API:iava.io. File类 2.File类的常用方法 1 /** 2 * 案例1:使用文件操作的9大 ...
分类:其他好文   时间:2021-02-10 13:17:46    阅读次数:0
多线程练习1_网图下载
### 案例:网图下载 ```java //1. 导入commons io里的jar包 //2. add as Library package com.hao.Demo01; import org.apache.commons.io.FileUtils; import java.io.File; i ...
分类:编程语言   时间:2021-02-10 13:02:53    阅读次数:0
golang 调用cmd执行EXE
package main import ( "bufio" "fmt" "io" "log" "os" "os/exec" // "strings" ) func checkExe2(exeAdress string) { cmd := exec.Command("cmd.exe", "/c", " ...
分类:其他好文   时间:2021-02-09 12:32:53    阅读次数:0
180413条   上一页 1 ... 40 41 42 43 44 ... 18042 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!