Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

Big data, a good programmer, shares the Scala of spark on the learning route.

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/03 Report--

Big data, a good programmer, shares the Scala of spark, basic grammar:

Variable

Definition of variable: immutable: val a = 2 or val a: Int = 2 (data type specified) lazy val a: Int = 2

Variable: var a = 2 or var a: Int = 2 (data type specified)

Def a = 2

The definition variable cannot be 1. Start with a number and a special symbol (except _). Start with keywords (var, val, class, etc.)

What def defines is?

After var compilation, there are set and get square ☐ methods, so you can re-assign values.

After val is compiled, there are only get methods, so you can no longer assign values.

Lazy lazy variable, which is instantiated only when the variable is called, and can only be followed by val

Def and val are almost unable to reassign values. More decorations.

Type of Scala variable: Any is the top-level type of scala. There are two subclasses of AnyVal (value type) and AnyRef (reference type) under Any.

AnyVal: it has nine types, seven of which refer to types: Double Float Byte Int Short Long Char and two non-value types: Unit Boolean

AnyRef: is a reference type whose subclasses are: List Option or class that is custom and inherits it

All types require uppercase initials

Scala automatically infers types

Scala data types can be converted from low to high Byte-Short-Int-Long-Float-Double

Char-Int-Long-Float-Double

Note: there is no strong turn in scala.

Operator

There is no concept of operators in Scala. So-called operators are actually methods.

Mathematical operation: +-* /:%. + () Note: xroomy is equivalent to x.+ (y).

Relationship:

< >

=!

Bit operation: | & ^

If two variables of different types operate, the type of the final result is the larger one.

If you want to format the output: var x = 5 var y = 5

Var n = x + y

Print (s "x+y=$n") output result x+y=10

Of course, you can also add the string "xSecrety" to the result.

Conditional expression

This typing is empty because there is not a value in else, but an assignment statement.

Normally, it should be var res = if (sex = = 1) {"male"} else {"female"}

Because there is only one 'expression' in curly braces, curly braces can be omitted

Var res = if (sex = = 1) "male" else "female"

For cycle

For (I {yAge > = mAge})

We can call the function: def func1 (yAge:Int,mAge:Int): String= {

Val a: Boolean = m (yAge,mAge)

Val str: String = if (a) "brother" else "brother"

}

We can also pass the function as a parameter to the method:

Def func1 (yAge:Int,mAge:Int,f: (Int,Int) = > Boolean): String= {

Var a = f (yAge,mAge) or var a: Boolean = f (yAge,mAge)

Val res: String=if (a) "brother" else "brother"

Res

}

Call: println (func1 (18pr 20jm))

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report