码迷,mamicode.com
首页 >  
搜索关键字:google io    ( 189010个结果
回顾方法及加深
1 package com.oop.demo; 2 3 import java.io.IOException; 4 5 //Demo1 类 6 public class Demo1 { 7 //main 方法 8 public static void main(String[] args) { 9 ...
分类:其他好文   时间:2021-02-19 12:58:46    阅读次数:0
网络拓扑与系统构成常见ICON地址
Google Cloud Platform https://cloud.google.com/icons/ Azure https://docs.microsoft.com/en-us/azure/architecture/icons/ CISCO http://www.cisco.com/web/ ...
分类:其他好文   时间:2021-02-19 12:57:52    阅读次数:0
python3写txt正确方法
#coding=utf8 import io import string a="你好" f = open(r'f:\enuser.txt', 'a') #若文件不存在,系统自动创建。'a'表示可连续写入到文件,保留原内容,在原 #内容之后写入。可修改该模式('w+','w','wb'等) f.wri ...
分类:编程语言   时间:2021-02-18 13:19:24    阅读次数:0
Redis数据库的基本介绍和安装
Redis的基本介绍 1.Redis是NoSQL数据库,不是传统的关系型数据库 官网:https://redis.io/和http://www.redis.cn/ 2.Redis:REmote Dictionary Server(远程字典服务器),Redis的性能非常高,单机能够达到15w qps, ...
分类:数据库   时间:2021-02-18 13:18:56    阅读次数:0
KUBERNETES 基础(1)
#KUBERNETES 基础(1) ##1. Kubernetes 初体验 ###1.1 简介 Kubernetes 是 Google 团队发起的?个开源项?,它的?标是管理跨多个主机的容器,?于?动部 署、扩展和管理容器化的应?程序,主要实现语?为 Go 语?。Kubernetes 的组件和架构还 ...
分类:Web程序   时间:2021-02-18 13:02:14    阅读次数: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
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
在linux 中给chrome设置代理
在/home/用户名/.bashrc 最后一行添加如下代码: alias chrome='google-chrome --proxy-server="127.0.0.1:8889" '#打开代理chrome 在终端运行:source ~/.bashrc 打开谷歌浏览器 ...
分类:系统相关   时间:2021-02-16 12:39:11    阅读次数: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
189010条   上一页 1 ... 41 42 43 44 45 ... 18901 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!