scala 字段覆盖_Scala中的字段覆盖

scala 字段覆盖

Scala字段覆盖 (Scala field overriding)

Overriding is the concept in which the child class is allowed to redefine the members of the parent class. Both methods and variables/ fields can be overridden in object-oriented programming. In Scala as well both methods and Fields can be overridden but overriding of fields has some restrictions on implementation.

覆盖是允许子类重新定义父类成员的概念。 在面向对象的编程中,方法和变量/字段都可以被覆盖。 在Scala中,方法和字段都可以被覆盖,但是字段的覆盖对实现有一些限制。

Scala中的覆盖字段 (Overriding fields in Scala)

For overriding fields in Scala, some rules must be kept in mind to avoid errors that arise while implementing this concept,

为了覆盖Scala中的字段,必须牢记一些规则,以避免在实施此概念时出现错误,

  1. The use of override keyword is necessary to implement the concept field overriding. If you missed the keyword an error will be prompted and execution of the code will be stopped.

    要实现概念字段重写,必须使用override关键字 。 如果您错过了关键字,将提示错误并停止执行代码。

  2. Only fields that are defined using the val keyboard for defining fields in both parent class and child class can be overridden.

    只能覆盖使用val键盘定义的用于定义父类和子类中字段的字段。

  3. Fields that are defined using the var keyword cannot be overridden as they are editable ( that is both read and write operations are allowed on the variable) anywhere in the class.

    使用var关键字定义的字段不能被覆盖,因为它们在类中的任何位置都是可编辑的(即,允许对变量进行读写操作)。

Here are some programs that show the implementation of field overriding and Scala.

这里有一些程序显示了字段覆盖和Scala的实现

1) Python program without override keyword

1)没有替代关键字的Python程序

This program will show what will be the output if override keyword is not used?

如果不使用override关键字,该程序将显示什么输出?

class animal{  
val voice = "animal's voice" 
}  
class dog extends animal{  
val voice = "Dog bark's...!"  
def says(){  
println(voice)  
}  
}  
class cat extends animal{
val voice = "cat meow's...!";
def says(){  
println(voice)  
} 
}
object MainObject{  
def main(args:Array[String]){  
var ani = new dog()  
ani.says()  
}  
} 

Output

输出量

error: overriding value voice in class animal of type String;value voice needs `override' modifierval voice = "Dog bark's...!"^
error: overriding value voice in class animal of type String;value voice needs `override' modifierval voice = "cat meow's...!";^
two errors found

2) Python program with override keyword

2)具有override关键字的Python程序

This program will show what will be the output if override keyword is used?

该程序将显示如果使用override关键字将输出什么?

class animal{  
val voice = "animal's voice"
}  
class dog extends animal{  
override val voice = "Dog bark's...!"  
def says(){  
println(voice)  
}  
}  
class cat extends animal{
override val voice = "Cat meow's...!";
def says(){  
println(voice)  
} 
}
object MainObject{  
def main(args:Array[String]){  
var ani = new dog()  
ani.says()  
var ani2 = new cat()
ani2.says()
}  
} 

Output

输出量

Dog bark's...!
Cat meow's...!

3) Python program with var keyword

3)使用var关键字的Python程序

This program will show what will be the output if var keyword is used?

该程序将显示如果使用var关键字将输出什么?

class animal{  
var voice = "animal's voice"
}  
class dog extends animal{  
override var voice = "Dog bark's...!"  
def says(){  
println(voice)  
}  
}
class cat extends animal{
override var voice = "Cat meow's...!";
def says(){  
println(voice)  
} 
}
object MainObject{  
def main(args:Array[String]){  
var ani = new dog()  
ani.says()  
var ani2 = new cat()
ani2.says()
}  
}  

Output

输出量

error: overriding variable voice in class animal of type String;variable voice cannot override a mutable variableoverride var voice = "Dog bark's...!"^
error: overriding variable voice in class animal of type String;variable voice cannot override a mutable variableoverride var voice = "Cat meow's...!";^
two errors found

翻译自: https://www.includehelp.com/scala/field-overriding-in-scala.aspx

scala 字段覆盖

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

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

相关文章

python 散点图 分类_Python | 分类图

python 散点图 分类Visualizing different variables is also a part of basic plotting. Such variables can have different classes, for example, numerical or a category. Matplotlib has an important feature of Categorical Plotting. We can plot multiple categoric…

python 对角线矩阵_Python | 矩阵的对角线

python 对角线矩阵Some problems in linear algebra are mainly concerned with diagonal elements of the matrix. For this purpose, we have a predefined function numpy.diag(a) in NumPy library package which automatically stores diagonal elements in an array (a V…

二叉树祖先节点_二叉树的祖先

二叉树祖先节点Problem statement: 问题陈述: Given a Binary Tree and a target key, write a function that prints all the ancestors of the key in the given binary tree. 给定二叉树和目标键,编写一个函数,以打印给定二叉树中键的所有…

txt文本变为粗体_如何在PHP中使文本变为粗体?

txt文本变为粗体Sometimes we might want to display text with style. That its font, color, make it bold, italic, underlined and many more. Adding whatever style is all based on the message that we want to pass across or getting someones attention. 有时我们可…

CALayer精讲

CALayer精讲 CALayer包含在QuartzCore框架中,这是一个跨平台的框架,既可以用在iOS中又可以用在Mac OS X中。后面要学Core Animation就应该先学好Layer(层)。 我们看一下UIView与Layer之间的关系图(图片来源于网络&…

VSRE的完整形式是什么?

VSRE:预期回复非常短 (VSRE: Very Short Reply Expected) VSRE is an abbreviation of "Very Short Reply Expected". VSRE是“ Very Short Reply Expected”的缩写。 It is an expression, which is commonly used in the Gmail platform. It is writte…

rofl用什么播放_ROFL的完整形式是什么?

rofl用什么播放ROFL:笑在地板上滚动 (ROFL: Rolling On Floor Laughing) ROFL is an abbreviation of Rolling on Floor Laughing. ROFL is a very trendy internet slang between youngsters and used in text messaging, instant messaging, chatting, and social…

为什么只有根桥发送bpdu_BPDU的完整形式是什么?

为什么只有根桥发送bpduBPDU:网桥协议数据单元 (BPDU: Bridge Protocol Data Unit) BPDU is an abbreviation of the "Bridge Protocol Data Unit". BPDU是“网桥协议数据单元”的缩写 。 It is a data message in the form of a frame that used to exc…

什么叫穷举法?

穷举法的基本思想是根据题目的部分条件确定答案的大致范围,并在此范围内对所有可能的情况逐一验证,直到全部情况验证完毕。若某个情况验证符合题目的全部条件,则为本问题的一个解;若全部情况验证后都不符合题目的全部条件&#xf…

gif 格式 完整 检查_GIF的完整格式是什么?

gif 格式 完整 检查GIF:图形交换格式 (GIF: Graphics Interchange Format) GIF is an abbreviation of Graphics Interchange Format. It is extensively used for animations and still images on the World Wide Web. The image is set out is bitmap image and i…

Java基础_05

2019独角兽企业重金招聘Python工程师标准>>> 1:boolean运算符号 || 与 | && 与 &的区别。 Equals与innstanceof 1:java中的方法。方法的定义,参数、返回值、调用方式。 2:方法调用与参数传递、Static方…

账单cbl_CBL的完整形式是什么?

账单cblCBL:基于计算器的实验室 (CBL: Calculator-Based Laboratory) CBL is an abbreviation of "Calculator-Based Laboratory". CBL是“基于计算器的实验室”的缩写 。 It is a mobile data collection based piece of equipment. The process of col…

Android Studio 之下载安装

2019独角兽企业重金招聘Python工程师标准>>> 目录[-] 背景Android Studio VS Eclipse下载创建HelloWorld项目背景 相信大家对Android Studio已经不陌生了,Android Studio是Google于2013 I/O大会针对Android开发推出的新的开发工具,目前很多开…

c#格式化字float_C#中的float关键字

c#格式化字floatC#float关键字 (C# float keyword) In C#, float is a keyword which is used to declare a variable that can store a floating point value between the range of 1.5 x 10−45 to 3.4 x 1038. float keyword is an alias of System.Single. 在C&…

模拟UIWebView

2019独角兽企业重金招聘Python工程师标准>>> // // ViewController.m // 模拟UIWebView // // Created by dc0061 on 15/12/10. // Copyright © 2015年 dc0061. All rights reserved. //#import "ViewController.h"interface ViewController ()&…

ruby 将日期转化为时间_Ruby中的日期和时间类

ruby 将日期转化为时间Ruby数据和时间类 (Ruby Data and Time Classes) In any program written in any language, at any point of time you may need to fetch the date and time of the system at that instant. Ruby facilitates you with three classes related to Date a…

AsyncHttpClien访问网络案例分析

Android数据存储的四种方式分别是:SharedPreferences存储、File文件存储、Network网络存储和sqlite数据库存储,网络存储需要使用AsyncHttpClient发送请求,并将数据存储到后台数据库中,关于AsyncHttpClient、HttpClient、HttpURLCo…

i2c-toos 交互数据_什么是CD-i(交互式光盘)?

i2c-toos 交互数据CD-i:交互式光盘 (CD-i: Compact Disk-Interactive) CD-i is an abbreviation of "Compact Disk-Interactive". It is a standard of software and hardware-based configuration of digital optical disc data storage, created mutual…

4g 中bis代表什么_BIS的完整形式是什么?

4g 中bis代表什么BIS:印度标准局 (BIS: Bureau of Indian Standards) BIS is an abbreviation of the Bureau of Indian Standards. It is the National Standard Body of India which is operating in the groundwork and execution of the standards, certificati…

Feature selection

原文:http://scikit-learn.org/stable/modules/feature_selection.html The classes in the sklearn.feature_selection module can be used for feature selection/dimensionality reduction on sample sets, either to improve estimators’ accuracy scores or to boost the…