一、卖票案例 //测试 public class CilentTest { public static void main(String arg[]){ Customer p1=new Children(); System.out.println(p1.calculate(100.00)); Cus ...
分类:
其他好文 时间:
2021-05-24 14:17:47
阅读次数:
0
public class WeatherUtil { private static final Logger LOGGER = LoggerFactory.getLogger(WeatherUtil.class); public static String doGet(String path){ S ...
分类:
其他好文 时间:
2021-05-24 14:15:35
阅读次数:
0
1.统计出IP的文件,哪个ip出现的次数最多,一行一个ip。如果文件很大,超过内存。 2.给定a、b两个文件,各存放50亿个url,每个url各占64B,内存限制是4GB,请找出a、b两个文件共同的url? 3.现在有一个非常庞大的URL库(100E),然后现在还有一个URL,(迅速)判断这个URL ...
分类:
其他好文 时间:
2021-05-24 14:14:27
阅读次数:
0
题目 给定一个序列,给出最大子序列的和。 解答 public class maxSubSum { public static int maxSubSum1(int [] a){ int maxSum = 0; for (int i = 0; i < a.length; i++) { for(int ...
分类:
编程语言 时间:
2021-05-24 14:09:52
阅读次数:
0
Hello,world Java代码: public class Hello{ public static void main(String[] args){ System.out.print("Hello,world!"); }} 编译: javac Hello.java //编译生成class文 ...
分类:
其他好文 时间:
2021-05-24 14:06:34
阅读次数:
0
1.TFTP: TFTP(Trivial File Transfer Protocol,简单文件传输协议)是TCP/IP协议族中的一个用来在客户机与服务器之间进行简单文件传输的协议,基于UDP实现。提供不复杂、开销不大的文件传输服务。端口号为69。 2.TFTP的报文格式,如图所示 图中显示了5种T ...
分类:
其他好文 时间:
2021-05-24 13:58:04
阅读次数:
0
问题描述: 在三台centos7上配置mongo副本集, 三节点启动 docker run -d --name mongoconfig \ -p 26001:27019 \ -v /root/data/soft/mongo/configdb:/data/configdb \ \mongo:4.0.2 ...
分类:
其他好文 时间:
2021-05-24 13:49:16
阅读次数:
0
<?php class One{ private static $_one; private function __construct(){} private function __clone(){} public static function getOne(){ if(!self::$_one ...
分类:
Web程序 时间:
2021-05-24 13:36:59
阅读次数:
0
查看当前目录下的所有文件 dir 切换目录 cd /d e:\test cd .. 清理屏幕 cls (clear screen) 退出终端 exit 查看电脑IP ipconfig /all ping命令 ping www.baidu.com 查看应用 calc notepad mspaint 文 ...
分类:
其他好文 时间:
2021-05-24 13:34:35
阅读次数:
0
countDownLatch这个类使一个线程等待其他线程各自执行完毕后再执行。 public class CountDownLatchDemo { public static void main(String[] args) throws InterruptedException{ /** * * ...
分类:
其他好文 时间:
2021-05-24 13:31:31
阅读次数:
0