码迷,mamicode.com
首页 >  
搜索关键字:print    ( 43532个结果
Linux shell中检查tomcat进程健康状态
创建第一个启动shell脚本,如tomcat_restart.sh,内容 #/bin/sh tomcatmsg=$(ps -ef|grep tomcat|awk '{print $1$8}'|grep '/xxxx/xxx/xxxx/jdk/bin/java/'|wc -l) if [ $tomca ...
分类:系统相关   时间:2021-06-03 18:29:06    阅读次数:0
运算符
运算符 算数运算符 + - 比较运算符 > == 赋值运算符=,+= 逻辑运算符not,and,or(优先级:not > and > or,同一优先级从左至右依次计算) # and or not # 1 在没有()的情况下,优先级:not > and > or,同一优先级从左至右依次计算 # 情况1 ...
分类:其他好文   时间:2021-06-03 18:09:10    阅读次数:0
Java已知图片路径下载图片到本地
public static void main(String[] args) { FileOutputStream fos = null; BufferedInputStream bis = null; HttpURLConnection httpUrl = null; int size = 0; ...
分类:编程语言   时间:2021-06-03 18:04:25    阅读次数:0
工厂模式 二(工厂方法模式)
1 ...
分类:其他好文   时间:2021-06-03 17:58:03    阅读次数:0
Python3 print简介
def print(self, *args, sep=' ', end='\n', file=None): # known special case of print """ print(value, ..., sep=' ', end='\n', file=sys.stdout, flush=Fa ...
分类:编程语言   时间:2021-06-03 17:49:48    阅读次数:0
Java HashMap
HashMap 是一个散列表,它存储的内容是键值对(key-value)映射。 HashMap 实现了 Map 接口,根据键的 HashCode 值存储数据,具有很快的访问速度,最多允许一条记录的键为 null,不支持线程同步。 HashMap 是无序的,即不会记录插入的顺序。 HashMap 继承 ...
分类:编程语言   时间:2021-06-02 20:54:38    阅读次数:0
Hello World
新建一个java文件 文件后缀为.java Hello.java 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,world"); } } 编译javac java文件( ...
分类:其他好文   时间:2021-06-02 20:48:48    阅读次数:0
6.1Java多线程抢票龟兔赛跑
6.1Java多线程抢票龟兔赛跑 多线程抢票,并发问题,数据安全异常 package iostudy.thread;?/** * 共享资源 * 一份资源,三个代理商 * 当一份资源有多个代理去操作的时候就会存在并发问题 * 并发发生之后后期需要保证线程安全 * @since JDK 1.8 * @d ...
分类:编程语言   时间:2021-06-02 20:27:35    阅读次数:0
shell script
#ping whole local domainfor ip in {1..255};do ping -c 3 192.168.110.$ip >> ping.log;done grep '3 ttl' ping.log |awk '{print $4}' | sed 's\:\\g' |while ...
分类:系统相关   时间:2021-06-02 20:19:59    阅读次数:0
python 装饰器 log
定义logger方法: import loggingimport osimport timeimport utilsdata=time.strftime("%Y-%m-%d-%H:%M:%S")logging.basicConfig(filename=utils.get_project_path() ...
分类:编程语言   时间:2021-06-02 19:50:48    阅读次数:0
43532条   上一页 1 ... 12 13 14 15 16 ... 4354 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!