摘要:
1 /usr/lib/jvm/java-7-openjdk-amd64/bin/java -Didea.launcher.port=7538 -Didea.launcher.bin.path=/usr/local/idea-IC-139.225.3/bin -Dfile.encoding=UTF-... 阅读全文
摘要:
1.scala中的Int): Unit ={ }}View Code其中的Function1的定义如下2.与view bounds一样context bounds(上下文界定)也是隐式参数的语法糖object Test { def main(args: Array[String]) { } ... 阅读全文
摘要:
1.作为隐式参数 1 object Test { 2 3 def main(args: Array[String]) { 4 import FruitColor._ 5 Fruit.get("apple") 6 } 7 } 8 9 object Fruit{10 de... 阅读全文
摘要:
1 var str = "liuzhanqi"; 2 document.write(str["length"]);//等价str.l ength 3 4 var str = string.fromcharcode(72, 101, 108, 108, 111, 33); 5 document... 阅读全文
摘要:
使用spark-shell 启动spark集群时的流程简析:spark-shell->spark-submit->spark-class在sprk-class中根据条件会从不同的入口启动application。从SparkSubmitDriverBootstrapper启动时 conf/spark-... 阅读全文
摘要:
1.case的命令格式 1 #!/bin/sh 2 echo "please input number 1 to 3" 3 read number 4 case $number in 5 1) 6 echo "you input 1" 7 ;; 8 2) 9 echo ... 阅读全文
摘要:
当项目附加到IIS进行调试时,如果在IIS中没有配置该项目则在设置断点是会出现:当前不会命中断点 还没有为该文档加载任何符号 阅读全文