一 批处理 文件内容: hello world hello scala hello flink 代码: import org.apache.flink.api.scala._ object WordCount { def main(args: Array[String]): Unit = { //创 ...
分类:
其他好文 时间:
2020-07-06 16:14:13
阅读次数:
56
哈希表又叫散列表,这里用数组和链表实现 package com.atguigu.datastructures.hashtable import scala.util.control.Breaks._ object HashTableDemo { def main(args: Array[String ...
分类:
其他好文 时间:
2020-07-05 23:13:41
阅读次数:
64
构建二叉树;实现前序、中序、后序遍历;两种删除节点的原则 package com.atguigu.datastructures.binarytree object BinaryTreeDemo { def main(args: Array[String]): Unit = { //先使用比较简单的方 ...
分类:
其他好文 时间:
2020-07-05 23:04:02
阅读次数:
76
package chapter01 object test05 { def main(args:Array[String]):Unit={ //标识符 //scala中可以使用特殊符号作为标识符,其实是将特殊符号在编译时进行了转换 //操作符不能在标识符的中间和最后 var ++ ="123" pr ...
分类:
其他好文 时间:
2020-06-26 21:55:34
阅读次数:
66
package chapter01 object test02 { def main(args:Array[String]): Unit={ val name="ming" val age=10 val url="baidu.com" println("name:"+name+"age:"+age+ ...
分类:
其他好文 时间:
2020-06-26 15:01:53
阅读次数:
63
转小写:ch | 0b00100000 即 ch | 0x20 即 ch | 32 效果:A-Z → a-z,小写字母、数字、大部分标点符号不变。_变成了奇怪的字符。 测试: public static void main(String[] args) { String s = "ABCDEFGHI ...
分类:
其他好文 时间:
2020-06-19 11:50:45
阅读次数:
49
(1)代码示例 1 import org.apache.flink.streaming.api.scala._ 2 3 object StreamWordCount { 4 def main(args:Array[String]):Unit={ 5 //创建流处理的执行环境 6 val env=St ...
分类:
其他好文 时间:
2020-05-26 22:09:36
阅读次数:
92
object Test { def main(args: Array[String]) { try { val f = new FileReader("input.txt") } catch { case ex: FileNotFoundException =>{ println("Missing ...
分类:
其他好文 时间:
2020-05-24 22:31:48
阅读次数:
82
pages 16k malloc出来的是clean的 写过之后变成dirty memory mapped files readonly的file是clean的 dirty--memory written by my app ie,malloc, array,string,decoded image ...
分类:
其他好文 时间:
2020-05-22 16:48:20
阅读次数:
66
1.计算1到4的和 1 def main(args: Array[String]): Unit = { 2 3 val total = sum(1,2,3,4) 4 println(total) 5 6 } 7 8 def sum(args: Int*) = { 9 var result = 0 1 ...
分类:
其他好文 时间:
2020-05-21 10:17:21
阅读次数:
130