12 2020 档案

摘要:https://www.cnblogs.com/gaohanghang/p/12099614.html 阅读全文
posted @ 2020-12-28 16:36 alittlecomputer 阅读(34) 评论(0) 推荐(0) 编辑
摘要:https://blog.csdn.net/jisuanji12306/article/details/86363390 首先,线程之间通信的模型有两种:共享内存和消息传递,一下方式都是基于这两种来实现。 题目:有两个线程A和B,A线程向一个集合里面依次添加元素,”abc”字符串,一共添加十次,当添 阅读全文
posted @ 2020-12-19 21:39 alittlecomputer 阅读(132) 评论(0) 推荐(0) 编辑
摘要:部分摘自:https://blog.csdn.net/jisuanji12306/article/details/86363390 结果 阅读全文
posted @ 2020-12-19 20:33 alittlecomputer 阅读(42) 评论(0) 推荐(0) 编辑
摘要:得到 阅读全文
posted @ 2020-12-17 21:22 alittlecomputer 阅读(41) 评论(0) 推荐(0) 编辑
摘要:部分摘自https://blog.csdn.net/u010963948/article/details/90080056 部分摘自https://blog.csdn.net/qq_42764468/article/details/103690188 在Java中,JVM可以理解的代码就叫做字节码( 阅读全文
posted @ 2020-12-15 21:02 alittlecomputer 阅读(441) 评论(0) 推荐(0) 编辑
摘要:代码摘自:https://www.cnblogs.com/acm-bingzi/p/javaAnnotation.html 看如下代码: package com.work.AnnotationTest; import java.lang.annotation.*; @Target(ElementTy 阅读全文
posted @ 2020-12-15 20:30 alittlecomputer 阅读(465) 评论(0) 推荐(0) 编辑
摘要:整合注册中心Eureka,启动provider_service服务的时候出现了如下的报错:(后面发现是由于provider_service,eureka_server使用的spring-boot版本不一致导致报错) org.springframework.beans.factory.BeanCrea 阅读全文
posted @ 2020-12-15 14:56 alittlecomputer 阅读(4694) 评论(0) 推荐(0) 编辑
摘要://方法1 //存在问题:如果cookie中存在 aaaname=aa;name=bb 获取name的值就会出现错误 function getCookie(c_name){ if (document.cookie.length>0){ //判断cookie是否存在 //获取cookie名称加=的索引 阅读全文
posted @ 2020-12-14 19:47 alittlecomputer 阅读(599) 评论(0) 推荐(0) 编辑
摘要:1.通过单一字符将字符串切割成多字符 var data= "烈日当头已数月有余,天气高温,汗流浃背,不知所言。"; var str = data.split(','); 结果: str[0] //烈日当头已数月有余 str[1] //天气高温 str[2] //汗流浃背 str[3] //不知所言。 阅读全文
posted @ 2020-12-14 19:46 alittlecomputer 阅读(978) 评论(0) 推荐(0) 编辑
摘要:解决办法如下,在pom.xml中build节点添加以下内容 <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <ski 阅读全文
posted @ 2020-12-14 19:30 alittlecomputer 阅读(368) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/cxuanBlog/p/11949238.html 写的比较详细。 阅读全文
posted @ 2020-12-14 10:34 alittlecomputer 阅读(26) 评论(0) 推荐(0) 编辑
摘要:https://www.cnblogs.com/hedianwei/p/6139616.html 阅读全文
posted @ 2020-12-08 14:12 alittlecomputer 阅读(63) 评论(0) 推荐(0) 编辑
摘要:python获取软件安装列表 #!/usr/bin/python import os import socket import winreg # 检测主机名,并将主机名作文检测结果的文件名 file = open(r'd:\123Soft.txt') # 定义检测位置 sub_key = [r'SO 阅读全文
posted @ 2020-12-02 16:08 alittlecomputer 阅读(866) 评论(0) 推荐(0) 编辑