scala 方法调用_Scala中的方法调用

scala 方法调用

Scala方法调用 (Scala Method Invocation)

Method invocation is the legal and correct technique to call a method in Scala programming language. The methods of a class are usually accessed by using two methods.

方法调用是用Scala编程语言调用方法的合法且正确的技术。 通常使用两种方法来访问类的方法。

  1. Object Creation

    对象创建

  2. Inheritance

    遗产

We dynamically call methods of a class using the object of the class. the correct way of accessing the methods using object are:

我们使用类的对象动态调用类的方法。 使用object访问方法的正确方法是:

1)使用点运算符调用方法 (1) Invoking methods using dot operator)

While calling a method of a class from the object of the class we use the dot (.) operator. The correct and legal way of accessing the methods of a class in Scala using the dot operator is,

从类的对象调用类的方法时,我们使用点(。)运算符。 使用点运算符访问Scala中的类方法的正确合法方法是,

    object_name.method_name(parameters)

This is the most appropriate way of accessing the method of a class using an object. Else than this some ways can be used but are not ideal. These methods do not generate any error but are not correct ways to call the method. They are,

这是使用对象访问类的方法的最合适的方法。 除此以外,可以使用某些方法,但并不理想。 这些方法不会产生任何错误,但不是正确的方法。 他们是,

    object_name . method_name(parameters)
object_name. method_name(parameters) 
object_name . method_name (parameters)

Example code:

示例代码:

class car{
def sound(noise:String){
println(noise+" goes fast")
}
}
object MyClass {
def main(args: Array[String]) {
var newcar = new car();
newcar.sound("Lamborghini!")
newcar . sound("Honda!")
newcar .sound("Mercedes!")
newcar . sound ("BMW!")
} 
}

Output

输出量

Lamborghini! goes fast
Honda! goes fast
Mercedes! goes fast
BMW! goes fast

2)直接调用方法 (2) Invoking methods directly)

Calling a method from a class inherits the base class or in the same class. The correct and legal way to call the method is,

从类中调用方法将继承基类或同一类。 调用该方法的正确合法方法是:

    method_name(parameters)

Other than this other methods are also legal. Like,

除此之外,其他方法也是合法的。 喜欢,

    method_name (parameters)
method_name( parameters )
method_name ( parameters )

Example code:

示例代码:

object MyClass {
def sound(noise:String){
println(noise+" makes  noise")
}
def main(args: Array[String]) {
sound("Lamborghini!")
sound ( "Honda!")
sound ( "Mercedes!" )
} 
}

Output

输出量

Lamborghini! makes  noise
Honda! makes  noise
Mercedes! makes  noise

3)调用带有参数的方法 (3) Invoking methods with parameters)

When the method contains arguments and calling methods with parameters. For invoking methods with the argument we will separate the parameters using commas and single space.

当方法包含参数并使用参数调用方法时。 对于使用参数调用方法,我们将使用逗号和单个空格分隔参数。

    object_name.method_name(parameter1, parameter2)

Other legal methods that are not correct but does not compile to an error,

其他不正确但无法编译为错误的合法方法,

    object_name. method_name(parameter1, parameter2)
object_name.method_name (parameter1, parameter2)
object_name.method_name( parameter1 , parameter2 )
object_name. method_name ( parameter1 , parameter2 )

Example code:

示例代码:

class  calculator{
def add(a:Int , b:Int){
println("The sum of "+a+" and "+b+" is "+(a+b))
}
}
object MyClass {
def main(args: Array[String]) {
var calc = new calculator();
calc.add(12,34)
calc. add(1,434)
calc.add (2,3)
calc.add(15, 4)
calc. add ( 232,314 )
} 
}

Output

输出量

The sum of 12 and 34 is 46
The sum of 1 and 434 is 435
The sum of 2 and 3 is 5
The sum of 15 and 4 is 19
The sum of 232 and 314 is 546

4)调用特殊方法 (4) Invoking special method)

When a method in Scala does not accept any argument. So, while invoking no arguments are passed which make the parentheses optional. Without parenthesis, the code becomes much more readable and also easy the programmers work.

当Scala中的方法不接受任何参数时。 因此,在调用时,不会传递使括号成为可选参数的参数。 没有括号,代码变得更具可读性,并且使程序员易于工作。

Both this is legal and correct ways to invoke a method that does not take any parameter.

这是调用不带任何参数的方法的合法方法和正确方法。

    object_name.method_name()
object_name.method_name

Example code:

示例代码:

class car{
def sound(){
println("Broom Broom Brooooom!!!!!")
}
}
object MyClass {
def main(args: Array[String]) {
var newcar = new car();
newcar.sound()
newcar.sound
}
}

Output

输出量

Broom Broom Brooooom!!!!!
Broom Broom Brooooom!!!!!

翻译自: https://www.includehelp.com/scala/method-invocation-in-scala.aspx

scala 方法调用

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/540753.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

docker lnmp php

使用 Docker 构建 LNMP 环境https://segmentfault.com/a/1190000008833012Docker 快速上手指南https://segmentfault.com/a/1190000008822648#articleHeader44

根据分类id找出父类id

2019独角兽企业重金招聘Python工程师标准>>> 数组格式要求 id > pid $columns [ 1 > 0, 10 > 1, 200 > 10 ]; public function getP($columns,$pid) { 模拟 $pid 200; $arr $columns; while($arr[$pid]) { …

不稳定学习器适合做基分类器_分类稳定性

不稳定学习器适合做基分类器什么是分类? (What is sorting?) It means to arrange data elements in increasing or decreasing order. There are many algorithms to do so like mergesort, quicksort, counting sort etc but there are pros and cons of each al…

JavaScript基础学习--05自定义属性、索引值

Demos&#xff1a; https://github.com/jiangheyan/JavaScriptBase 一、自定义属性1、读写操作<input abc"123" type"button" value"按钮" />//读写&#xff1a; var aBtn document.getElementsByTagName(input); aBtn[0].abc 456; 2、…

有线电视pcr是什么意思_有线电视的完整形式是什么?

有线电视pcr是什么意思有线电视&#xff1a;社区访问电视 (CATV: Community Access Television) CATV is an abbreviation of "Community Access Television". CATV是“社区访问电视”的缩写 。 It is also known as Public Access Television, which is a type of …

桶分类 算法_桶分类算法

桶分类 算法桶分类 (Bucket Sort) Bucket sort is a sorting technique in which array is partitioned into the buckets. By this, each bucket will be sorted individually, by using some another sorting algorithm such as insertion sort. This sorting technique assu…

百度之星初赛(A)——T5

今夕何夕 Problem Description今天是2017年8月6日&#xff0c;农历闰六月十五。 小度独自凭栏&#xff0c;望着一轮圆月&#xff0c;发出了“今夕何夕&#xff0c;见此良人”的寂寞感慨。 为了排遣郁结&#xff0c;它决定思考一个数学问题&#xff1a;接下来最近的哪一年里的同…

mycat 不得不说的缘分

1&#xff0c;愕然回首。它在灯火阑珊处关于mysql集群中间件。曾经写在应用程序里面&#xff0c;由开发者实现&#xff0c;在配置文件中面写多个数据源&#xff0c;写库一个数据源&#xff0c;读库一个数据源&#xff0c;笨拙不高效&#xff0c;由于程序猿的差异化。效果并非特…

python创建空元组_用Python创建空元组

python创建空元组Python | 空元组 (Python | empty tuple) In python, we can also create a tuple without having any element. An empty tuple is created using a pair of round brackets, (). 在python中&#xff0c;我们也可以创建一个没有任何元素的元组 。 使用一对圆括…

共享马扎的火爆,原来是一场营销!

如今&#xff0c;人们的生活仿佛已经被“共享化”&#xff1a;上班有共享单车、睡觉有共享床铺、商场有共享充电宝、去机场有共享巴士……好像除了男女朋友是自己的&#xff0c;其他都要共享了&#xff01;哎&#xff0c;不对&#xff01;前些日子&#xff0c;竟然还真有了共享…

什么是CDP(连续数据保护)?

CDP&#xff1a;连续数据保护 (CDP: Continuous Data Protection) CDP is an abbreviation of "Continuous Data Protection". It is also called as a real-time backup, is a system of data storage that backs up data in an organization or enterprise on a sy…

Git实战(二)原理

上次的博文Git实战&#xff08;一&#xff09;版本号控制概述中我们简介了一下版本号控制系统的概念&#xff0c;重点对版本号控制的三种类型进行了分析和对照&#xff0c;从本篇博文開始我们进入Git的世界&#xff0c;首先介绍一下Git实现版本号控制的原理。 Git与SVN等其它版…

什么是html的混杂模式_HTML的完整形式是什么?

什么是html的混杂模式HTML&#xff1a;超文本标记语言 (HTML: Hyper Text Markup Language) HTML is an abbreviation of Hypertext markup language. Hypertext markup language is a text based standard markup language used to create web pages and design documents whi…

PHP-Manual的学习----【语言参考】----【类型】-----【对象】

Object 对象1.对象初始化要创建一个新的对象 object &#xff0c;使用 new 语句实例化一个类&#xff1a; class foo{ function do_foo(){ echo "1111"; }}$bar new foo;echo $bar->do_foo();输出&#xff1a;1111注解&#xff1a;一个类可以初始化…

kotlin 两个数字相加_Kotlin程序交换两个数字

kotlin 两个数字相加Given two numbers, we have to swap them. 给定两个数字&#xff0c;我们必须交换它们。 Example: 例&#xff1a; Input:First number: 10Second number: 20Output:First number: 20Second number: 10To swap two numbers – here we are using third v…

Kotlin入门(14)继承的那些事儿

上一篇文章介绍了类对成员的声明方式与使用过程&#xff0c;从而初步了解了类的成员及其运用。不过早在《Kotlin入门(12)类的概貌与构造》中&#xff0c;提到MainActivity继承自AppCompatActivity&#xff0c;而Kotlin对于类继承的写法是“class MainActivity : AppCompatActiv…

在Scala中列出| 关于Scala列表的完整教程

Scala | 清单 (Scala | List) List in Scala is a collection that stores data in the form of a liked-list. The list is an immutable collection which means the elements of a list cannot be altered after the list is created. Lists are flexible with data types, …

MySQL单机多实例部署详解之------多实例分别定义不同的配置文件

mysql多实例安装---分别定义不同的配置文件1.安装MySQL需要的依赖包[rootMySQL ~]# yum install ncurses-devel libaio-devel cmake -y[rootMySQL ~]# rpm -qa ncurses-devel libaio-develncurses-devel-5.7-4.20090207.el6.x86_64libaio-devel-0.3.107-10.el6.x86_642.安装编译…

javascript模块_JavaScript中的模块

javascript模块JavaScript模块 (JavaScript Modules) One of the key features of programming fundamentals is breaking down your code into fragments. These fragments depending on its functionality have been coined various terms like functions, components, modul…

在mac上安装Docker

1.进入一下地址进行下载docker https://download.docker.com/mac/stable/Docker.dmg 进入后进行下载后进行安装 2.将其拖动到Appliaction中即可 3.第一打开会有一个这样的欢迎页面 3.检查是否安装完成 出现上图所示标示安装完成了