Priests and Devils个人github阅读以下游戏脚本Priests and Devils is a puzzle game in which you will help the Priests and Devils to cross the river within the time... ...
分类:
编程语言 时间:
2019-10-02 20:50:26
阅读次数:
112
题目如下: You are given two strings s and t of the same length. You want to change s to t. Changing the i-th character of s to i-th character of t costs | ...
分类:
其他好文 时间:
2019-10-02 10:27:08
阅读次数:
65
1.=LEFT(text,[num_chars]) ? 函数RIGHT具有相似功能 2.=FIND(find_text,within_text,[start_num]) ? 如果想要提取的数据长度不一致,仅使用LEFT函数就不能解决了,例如想要得到k前面的数字 可以先使用FIND函数,得出k所在位置 ...
分类:
其他好文 时间:
2019-09-30 17:00:05
阅读次数:
117
要做什么:匹配一个字符串,如果是小数点数字,就取整数;如果不是数字,就直接显示 先看正确实现: 之前的错误写法: 后台异常内容: java.lang.IllegalArgumentException: The expression [${expPerResult.matches('\d+\.?\d+ ...
分类:
Web程序 时间:
2019-09-29 12:49:00
阅读次数:
211
1、基本配置 基本配置、内核升级、基本服务安装参考https://www.cnblogs.com/dukuan/p/10278637.html,或者参考《再也不踩坑的Kubernetes实战指南》第一章第一节 2、Kubernetes组件安装 所有节点安装Kubeadm、Kubectl、kubele ...
分类:
Web程序 时间:
2019-09-27 01:47:06
阅读次数:
381
众所周知,Java的类加载机制采用了双亲委派模型,导致在进行类加载的时候会有多个加载器,这种复杂的机制,有时候会导致‘Exception in thread main java.lang.NoClassDefFoundError’这个异常,虽然可能你认为相应的类和jar包就在某个类加载器中。下面的文 ...
分类:
编程语言 时间:
2019-09-25 10:31:53
阅读次数:
96
一、切入点指示符 切入点指示符用来指示切入点表达式目的,在Spring AOP中目前只有执行方法这一个连接点,Spring AOP支持的AspectJ切入点指示符如下: execution:用于匹配方法执行的连接点; within:用于匹配指定的类及其子类中的所有方法。 this:匹配可以向上转型为 ...
分类:
编程语言 时间:
2019-09-19 23:49:47
阅读次数:
153
1.Array.of() 方法创建一个具有可变数量参数的新数组实例,而不考虑参数的数量或类型。 Array.of() 和 Array 构造函数之间的区别在于处理整数参数:Array.of(7)创建一个具有单个元素7的数组,而Array(7)创建一个长度为7的空数组; Array(n)即建立lengt ...
分类:
编程语言 时间:
2019-09-18 00:14:01
阅读次数:
103
Guideline3.1.1-Business-Payments-In-AppPurchaseWenoticedthatyourappusesin-apppurchaseproductstopurchasecreditsorcurrenciesthatarenotconsumedwithintheapp,whichisnotappropriatefortheAppStore.3.1.1问题就是支付
分类:
其他好文 时间:
2019-09-17 17:41:45
阅读次数:
131
Dijkstra’s Shortest Path Algorithm 实现详见:https://www.geeksforgeeks.org/dijkstras-shortest-path-algorithm-using-priority_queue-stl/ 需要注意的是,priority_queu ...
分类:
其他好文 时间:
2019-09-14 11:20:38
阅读次数:
124