码迷,mamicode.com
首页 >  
搜索关键字:static factory methods    ( 51752个结果
Java - 自定义泛型的使用 - 抽奖小例子
Main: public class Main { public static void main(String[] args) { Prizes<String> prizes = new Prizes<>(); prizes.addPrizes("一等奖: 荣耀40S手机 一部"); prizes ...
分类:编程语言   时间:2021-04-21 12:33:09    阅读次数:0
Java实现堆排序
堆排序 public class HeapSort { public static void main(String[] args) { int[] arr = {1, 3, 519, 2, 10, 8, 0, 998}; heapSort(arr); System.out.println(Arra ...
分类:编程语言   时间:2021-04-21 12:26:45    阅读次数:0
(EST 2019 Forecast)Performance of Prediction Algorithms for Modeling Outdoor Air Pollution Spatial Surfaces
可参考的表达方式: However, in the past decade linear (stepwise) regression methods have been criticized for their lack of flexibility, their ignorance of pote ...
分类:其他好文   时间:2021-04-21 12:23:21    阅读次数:0
CountDownLatch、CyclicBarrier、Semaphore使用例子
都是JUC并发包下的类 CountDownLatch:倒计时,countDown每次减少,await控制达到倒计时要求值 //下自习离开案例,班长必须最后走 public class CountDownLatchDemo { public static void main(String[] args ...
分类:其他好文   时间:2021-04-21 12:21:06    阅读次数:0
设计模式的一些日常记录
内容是看了设计模式之禅,然后自己写个文档总结到一起,便于查看。 单例模式:(程序运行过程中只能有一个类的对象) 单例模式主要是对构造方法进行私有化 private,防止外部通过 new方法 创建实体类。针对该类中的方法尽量使用static修饰,便于访问。 public class Singleton ...
分类:其他好文   时间:2021-04-21 12:14:09    阅读次数:0
java8新特性CompletableFuture
public class Main { public static void main(String[] args) throws Exception { // 两个CompletableFuture执行异步查询: CompletableFuture<String> cfQueryFromSina ...
分类:编程语言   时间:2021-04-21 12:05:09    阅读次数:0
UDP消息发送
UDP 发短信 : 不需要连接但是需要知道对方的地址 发送消息 //不需要连接服务器 public static void main(String[] args) throws Exception { //1.建立一个socket DatagramSocket datagramSocket = ne ...
分类:其他好文   时间:2021-04-21 11:50:41    阅读次数:0
flutter 获取安卓手机定位 失败(仅安卓、仅定位)
1:使用 插件 geolocator ,官网 https://pub.dev/packages/geolocator 2:按照官网配置,代码照抄 static Future<FlutterLocation> determinePosition() async { bool serviceEnable ...
分类:移动开发   时间:2021-04-21 11:46:27    阅读次数:0
CountDownLatch 和 CyclicBarrier
CountDownLatch 每次当线程调用countDownLatch.countDown()方法时,会对计数器减1,减到0,countDownLatch.await()放行 public class CountDownLatchTest { public static void main(Str ...
分类:其他好文   时间:2021-04-20 15:06:35    阅读次数:0
jQuery练习
需求:点击按钮,显示文本和隐藏文本 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>jQuery 入门</title> <script src="/static/jQuery-1.11/jquery-1.11 ...
分类:Web程序   时间:2021-04-20 14:39:19    阅读次数:0
51752条   上一页 1 ... 40 41 42 43 44 ... 5176 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!