码迷,mamicode.com
首页 >  
搜索关键字:x window system    ( 76983个结果
6.synchronized的使用注意点
先来个单例模式的线程安全代码 package basic.single; public class SingleTon { private SingleTon(){ System.out.println(Thread.currentThread().getName()); } private sta ...
分类:其他好文   时间:2021-04-14 11:58:53    阅读次数:0
Oracle专家高级编程 第二章 内存结构
SGA,系统全局盘区(System Globa Area),大的共享内存段,所有Oracle进程都在某点访问 PGA,进程全局盘区(Process Global Area),对单一进程或线程私有的 UGA,用户全局盘区(USER Global Area),与会话相关的内存,在SGA或PGA中,取决于 ...
分类:数据库   时间:2021-04-14 11:42:35    阅读次数:0
多线程技术优化:Callable,FutureTask,Task.get()
Map<String,BaseResultMessage> brmMap = new HashMap<>(); long beginTimeSum = System.currentTimeMillis(); for(StkInventoryWlTypeEnum emum:StkInventoryWl ...
分类:编程语言   时间:2021-04-13 12:56:07    阅读次数:0
js获取链接中的参数
获取网页链接中的参数 function getUrlParam(name) { var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)"); var r = window.location.search.substr(1).match(reg); i ...
分类:Web程序   时间:2021-04-13 12:43:17    阅读次数:0
使用Fiddler对手机小程序进行抓包
1.首先我们下载抓包工具 我的蓝奏云链接 链接 2.pc端设置:下载完成之后打开Fiddler抓包工具 1.fiddler设置 点击导航栏的工具-选项-链接 允许解密https证书 2.得到本机的ip 打开cmd window+r 输入从cmd 然后在cmd中输入ipconfig 3.手机端设置 手 ...
分类:微信   时间:2021-04-13 12:42:27    阅读次数:0
异常Exception
异常体系结构 java把异常当做对象,基类java.lang.Throwable作为所有异常的超类。 Java API定义了许多异常类,分为两大类,错误Error和异常Exception。 Exception分支重要的一个子类RuntimeException(运行时异常) 抛出和捕获异常 异常处理五 ...
分类:其他好文   时间:2021-04-13 12:29:17    阅读次数:0
JavaSE基础——方法详解002
JavaSE基础——方法详解 一、初识方法 对于之前常用的一条语句System.out.println(),有以下说明: println()是一个方法 System是系统类 out是标准输出对象 该语句就是调用系统类System 中的标准输出对象 out 中的 println()方法。 Java方法 ...
分类:编程语言   时间:2021-04-13 12:25:28    阅读次数:0
02_选择结构
1°单if语句 结构: if (/*条件*/){ /*执行体*/; } 例子: int age = 19; if (age > 18){ System.out.println('打机'); } System.out.println('回家'); 2°标准if...else...语句 例子: int ...
分类:其他好文   时间:2021-04-13 12:21:28    阅读次数:0
[Swagger]Unable to resolve service for type 'Microsoft.AspNetCore.Mvc.ApiExplorer.IApiDescriptionGroupCollectionProvider' while attempting to activate
详细错误如下 System.AggregateException:“Some services are not able to be constructed (Error while validating the service descriptor 'ServiceType: Swashbuckl ...
分类:Windows程序   时间:2021-04-13 12:19:16    阅读次数:0
构造函数中,获取yml中的参数
成员变量的注入是在Bean创建成功之后,通过setter方法进行注入的。所以下面会获取不到值 @RestController public class VipsoftImController { @Autowired private ZooKeeperUtil zooKeeperUtil; @Req ...
分类:其他好文   时间:2021-04-13 12:07:49    阅读次数:0
76983条   上一页 1 ... 47 48 49 50 51 ... 7699 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!