/** * Created by root * Description : 隐式值和隐式视图 */ object ImplicitTest { def main(args: Array[String]): Unit = { // 隐式值 implicit val str = "hello" def ... ...
分类:
其他好文 时间:
2017-12-07 21:13:50
阅读次数:
113
/** * Created by root * Description : List */ object ListTest { def main(args: Array[String]): Unit = { println() } val a = List(1,2,3,4) for (i x % 2... ...
分类:
其他好文 时间:
2017-12-06 21:54:44
阅读次数:
169
Javascipt的本地对象,内置对象和宿主对象 本地对象:Object、Function、Array、String、Boolean、Number、Date、RegExp、Error、EvalError、RangeError、ReferenceError、SyntaxError、TypeError、 ...
分类:
编程语言 时间:
2017-11-22 00:01:23
阅读次数:
287
import scala.util.control._ object learnning { def main(args:Array[String]):Unit={ val n:Int=10 println("第"+n+"个月兔子总数为"+fun(n)) val n1:Int=1 val n2:In... ...
分类:
其他好文 时间:
2017-11-21 16:58:19
阅读次数:
149
split()函数: scala> "a-b-c-d-e".split("-",3)res0: Array[String] = Array(a, b, c-d-e)scala> "a-b-c-d-e".split("-",4)res1: Array[String] = Array(a, b, c, ...
分类:
其他好文 时间:
2017-11-18 11:27:21
阅读次数:
194
1.顺序容器 1.顺序容器:vector,deque,list,forward_list,array,string。其中除list和forward_list外,其它都支持快速随机访问。 deque a = { 1, 2, 3, 4, 5, 6 }; cout << a[4] << endl ; 2. ...
分类:
编程语言 时间:
2017-11-12 11:11:02
阅读次数:
153
1.实现一个算法,确定一个字符串的所有字符是否全都不同。假使不允许使用额外的数据结构,又该怎么处理? public class UniqueChars { public static void main(String[] args) { // TODO Auto-generated method s ...
分类:
编程语言 时间:
2017-11-10 18:38:49
阅读次数:
193
/** * 已知三点坐标,求其中一点到另两点的垂线距离 * (如果在垂足不在线段内,最短距离为到其中一点的直线距离) * Created by wzq on 17-11-2. */object Point2lineDistance { def main(args: Array[String]) { ...
分类:
其他好文 时间:
2017-11-02 19:12:17
阅读次数:
265
Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permutation could be form ...
分类:
其他好文 时间:
2017-10-22 10:54:56
阅读次数:
166
procedure TFrm_030101_dimsAdd.AddSJ;var dims:IJSONDocument; List: TStringList; i:integer; arr:array of string; //定义动态string型数组begin try List := TStrin ...
分类:
编程语言 时间:
2017-10-21 12:17:18
阅读次数:
225