package com.gong import org.apache.spark.{SparkConf, SparkContext} object MyScalaWorldCount { def main(args: Array[String]): Unit = { //参数检测 if(args.l ...
分类:
其他好文 时间:
2020-02-18 18:56:10
阅读次数:
75
import org.apache.spark.{SparkConf, SparkContext} import scala.util.parsing.json.JSON object JSONParse { def main(args: Array[String]): Unit = { val i ...
分类:
Web程序 时间:
2020-02-17 00:45:38
阅读次数:
120
(1)编写独立应用程序实现数据去重 package my.scala import org.apache.spark.{SparkConf, SparkContext} object case2 { def main(args: Array[String]): Unit = { val conf = ...
分类:
其他好文 时间:
2020-02-14 20:35:56
阅读次数:
246
一、内部类 定义:实现一个抽象类 或者 Trait 时 可以通过内部类的方式完成 1 abstract class Cmx { 2 def func: Unit 3 4 } 5 6 def main(args: Array[String]): Unit = { 7 var cmx = new Cmx ...
分类:
其他好文 时间:
2020-02-12 20:30:05
阅读次数:
68
在Scala中,主函数的定义是def main(args: Array[String]),Scala中必须使用对象方法 1、变量: Scala中的变量分为两种var和val。 例如:def main(args: Array[String]):Unit = { val x = 1 x = 2 } 这样 ...
分类:
其他好文 时间:
2020-02-04 18:53:45
阅读次数:
68
实验二的2 模拟图形绘制 object test { def main(args: Array[String]) { val p=new Point(10,30) p.draw; val line1 = new Line(Point(0,0),Point(20,20)) line1.draw lin ...
分类:
其他好文 时间:
2020-01-31 14:28:23
阅读次数:
72
Scala: 1 object HelloWorld { 2 def main(args: Array[String]){ 3 println("Hello, World!") 4 } 5 } Java: 1 public class Hello 2 { 3 public static void m ...
分类:
编程语言 时间:
2020-01-16 12:42:00
阅读次数:
64
今天主要完成了Scala的配置并学习了Scala的编程基础实践 首先在Scala中,主函数的定义是 def main(args: Array[String]) 这点与java是不同的,java中是静态方法,而Scala中则必须使用对象方法 Scala中变量的定义和使用: Scala中的变量分为两种v ...
分类:
其他好文 时间:
2020-01-15 22:52:39
阅读次数:
81
所有的程序都会有涉及到数据类型, go常用的基本数据类型 int, byte,float, array, string, struct, map, channel, interface, function,其余的rune,complex,uintptr用到的时候在查,一般很少用到。rune一般在处理 ...
分类:
其他好文 时间:
2019-12-30 15:59:15
阅读次数:
114
Generators allow you to use the yield * syntax to yield each iteration of nested iterable as part of the main iterations. This enables you to combine ...
分类:
编程语言 时间:
2019-12-29 15:17:46
阅读次数:
87