ruby 变量类中范围_Ruby中的类

ruby 变量类中范围

Ruby类 (Ruby Classes)

In the actual world, we have many objects which belong to the same category. For instance, I am working on my laptop and this laptop is one of those laptops which exist around the globe. So, this laptop is an object or instance of the class 'laptop'. Thus, we can conclude that "A class is a blueprint or prototype that includes some methods and data members which are common to objects which are identical to each other in some way".

在现实世界中,我们有许多属于同一类别的对象。 例如,我在笔记本电脑上工作,而该笔记本电脑就是全球范围内存在的那些笔记本电脑之一。 因此,此便携式计算机是“笔记本电脑”类的对象或实例。 因此,我们可以得出结论: “一个类是一个蓝图或原型,它包含一些在某种程度上彼此相同的对象所共有的方法和数据成员”

Ruby is purely Object Oriented which means that its code may contain several classes and their instances. In Ruby, the concept of Reusability is achieved through the class as it allows the programmer to use the same prototype again and again to create objects which are similar to each other.

Ruby纯粹是面向对象的,这意味着它的代码可能包含几个类及其实例。 在Ruby中,可重用性的概念是通过类实现的,因为它允许程序员反复使用相同的原型来创建彼此相似的对象。

Class hierarchy in Ruby is demonstrated through the following diagram:

下图演示了Ruby中的类层次结构

Classes in Ruby programming language

Ruby provides you many classes. The above diagram does not include all of them. Class BasicObject is the superclass of all the classes in Ruby.

Ruby为您提供了许多类。 上图未涵盖所有内容。 BasicObject 类是Ruby中所有

在Ruby中创建类 (Creating Class in Ruby)

Creating class in Ruby is not a very difficult task in Ruby. Its definition starts with the keyword "class" and closes with the keyword 'end'. Its basic syntax is as follows:

在Ruby中创建类并不是在Ruby中的艰巨任务。 其定义以关键字“ class”开头,以关键字'end'结束 。 其基本语法如下:

    class (class _name)
end

Example:

例:

    class Student
end

The class "Student" is having no data member as well as a member function. We can create a class with data member and methods in the following manner:

“学生”没有数据成员以及成员函数。 我们可以通过以下方式用数据成员和方法创建一个类:

    class (class_name)
def (method_name)
end
end

We can create its object with the help of new keyword as shown below:

我们可以借助new关键字创建其对象,如下所示:

    (instance_name) = (classname).new(parameters)

We can call its methods by using . operator like,

我们可以使用调用它的方法。 操作员喜欢

    (instance_name).(method_name)

Example:

例:

class Student
def update
puts "Enter the number of students"
no_of_students=gets.chomp
puts "The updated numbers of students are #{no_of_students}"
end
end
record1=Student.new
record1.update

Output

输出量

Enter the number of students
36
The updated numbers of students are 36

In the above example, we have created a class Student. A method update is defined inside it with a local variable no_of_students.

在上面的示例中,我们创建了一个Student类。 在其中使用局部变量no_of_students定义方法更新 。

In the main(), we have created an object or instance of the class Student and named it as record1. By using . operator with the instance name, we are accessing the method update.

在main()中 ,我们创建了Student类的对象或实例,并将其命名为record1 。 通过使用。 实例名称的操作符,我们正在访问方法update 。

类可见性 (Class Visibility)

  1. Private

    私人的

  2. Public

    上市

  3. Protected

    受保护的

1) Private

1)私人的

Private methods can only be invoked in the context of the current object. You cannot call the private method directly in the main() method, If you are doing so, you will get an error as the visibility of private method is limited to the class in which it has been created.

私有方法只能在当前对象的上下文中调用。 您不能直接在main()方法中调用私有方法。如果这样做,您将得到一个错误,因为私有方法的可见性仅限于创建它的类。

For making a method Private, you need to use the keyword "private" before defining the method.

为了使方法私有,您需要在定义方法之前使用关键字“私有”

Syntax:

句法:

    private
def (method_name)
end

Example:

例:

class Student
private
def update
puts "Enter the number of students"
no_of_students=gets.chomp
puts "The updated numbers of students are #{no_of_students}"
end
end
record1=Student.new
record1.update

Output

输出量

// cannot use private members...
`<main>': private method `update' called for 
#<Student:0x000000018998a0> (NoMethodError)

2) Public

2)公开

by default, every method is public in Ruby i.e. they are free to be used by anyone – no access control is applied to them. In any case, if we explicitly want to make a method public, then we have to use the keyword 'public' along with the name of the method.

默认情况下,每种方法在Ruby中都是公共的,也就是说,任何人都可以自由使用它们-不对其应用访问控制。 在任何情况下,如果我们明确希望将方法公开,则必须使用关键字“ public”以及方法名称。

Syntax:

句法:

    public
def (method_name)
end

Example:

例:

class Student
public
def update
puts "Enter the number of students"
no_of_students=gets.chomp
puts "The updated numbers of students are #{no_of_students}"
end
end
record1=Student.new
record1.update

Output

输出量

Enter the number of students
36
The updated numbers of students are 36

3) Protected

3)受保护

Protected methods are only accessible to the objects of defining class and its child class or subclass. They are mainly used during Inheritance (Parent-Child class Concept). The keyword "rotected" is used before the method name.

受保护的方法仅可用于定义类及其子类或子类的对象。 它们主要在继承期间使用(父子类Concept)。 在方法名称之前使用关键字“ rotected”

Syntax:

句法:

    protected
def (method_name)
end

Example:

例:

class Student
protected
def update
puts "Enter the number of students"
no_of_students=gets.chomp
puts "The updated numbers of students are #{no_of_students}"
end
end
record1=Student.new
record1.update

Output

输出量

`<main>': protected method `update' called for 
#<Student:0x00000001e90948> (NoMethodError)

翻译自: https://www.includehelp.com/ruby/classes.aspx

ruby 变量类中范围

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

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

相关文章

以云计算的名义 驻云科技牵手阿里云

本文讲的是以云计算的名义 驻云科技牵手阿里云一次三个公司的牵手 可能会改变无数企业的命运 2017年4月17日&#xff0c;对于很多人来说可能只是个平常的工作日&#xff0c;但是对于国内无数的企业来说却可能是个会改变企业命运的日。驻云科技联合国内云服务提供商阿里云及国外…

[转载] python学习笔记

参考链接&#xff1a; Python | a b并不总是a a b 官网http://www.python.org/ 官网library http://docs.python.org/library/ PyPI https://pypi.python.org/pypi 中文手册&#xff0c;适合快速入门 http://download.csdn.net/detail/xiarendeniao/4236870 py…

标志寄存器_访问标志寄存器,并与寄存器B |交换标志寄存器F的内容 8085微处理器...

标志寄存器Problem statement: 问题陈述&#xff1a; Write an assembly language program in 8085 microprocessor to access Flag register and exchange the content of flag register F with register B. 在8085微处理器中编写汇编语言程序以访问标志寄存器&#xff0c;并…

浏览器端已支持 ES6 规范(包括 export import)

当然&#xff0c;是几个比较优秀的浏览器&#xff0c;既然是优秀的浏览器&#xff0c;大家肯定知道是那几款啦&#xff0c;我就不列举了&#xff0c;我用的是 chrome。 对 script 声明 type 为 module 后就可以享受 es6 规范所带来的模块快感了。 基础语法既然是全支持&#xf…

[转载] Python学习:Python成员运算符和身份运算符

参考链接&#xff1a; Python中和is运算符之间的区别 Python成员运算符 除了以上的一些运算符之外&#xff0c;Python还支持成员运算符&#xff0c;测试实例中包含了一系列的成员&#xff0c;包括字符串&#xff0c;列表或元组。 运算符 描述 实例 in 如果在指定的序列中找…

量词逻辑量词里面的v表示?_代理知识表示中的量词简介(基于人工智能)

量词逻辑量词里面的v表示&#xff1f;As we know that in an AI-based agent, the knowledge is represented through two types of logic: The propositional logic and the predicate logic. In the propositional logic, we have declarative sentences, and in the predica…

[转载] Python 机器学习经典实例

参考链接&#xff1a; Python中的逻辑门 内容介绍 在如今这个处处以数据驱动的世界中&#xff0c;机器学习正变得越来越大众化。它已经被广泛地应用于不同领域&#xff0c;如搜索引擎、机器人、无人驾驶汽车等。本书首先通过实用的案例介绍机器学习的基础知识&#xff0c;然后…

哈希表的最差复杂度是n2_给定数组A []和数字X,请检查A []中是否有对X | 使用哈希O(n)时间复杂度| 套装1...

哈希表的最差复杂度是n2Prerequisite: 先决条件&#xff1a; Hashing data structure 散列数据结构 Problem statement: 问题陈述&#xff1a; Given an array and a sum X, fins any pair which sums to X. Expected time complexity O(n). 给定一个数组和一个和X &#xff…

一文读懂深度学习框架下的目标检测(附数据集)

从简单的图像分类到3D位置估算&#xff0c;在机器视觉领域里从来都不乏有趣的问题。其中我们最感兴趣的问题之一就是目标检测。 如同其他的机器视觉问题一样&#xff0c;目标检测目前为止还没有公认最好的解决方法。在了解目标检测之前&#xff0c;让我们先快速地了解一下这个领…

[转载] Python-Strings

参考链接&#xff1a; Python成员资格和身份运算符 &#xff5c; in, not in, is, is not Strings 介绍 String是Python中最常用的类型。仅仅用引号括起字符就可以创建string变量。字符串使用单引号或双引号对Python来说是一样的。 var1 Hello World! var2 "Pyth…

aes-128算法加密_加密算法问题-人工智能中的一种约束满意问题

aes-128算法加密The Crypt-Arithmetic problem in Artificial Intelligence is a type of encryption problem in which the written message in an alphabetical form which is easily readable and understandable is converted into a numeric form which is neither easily…

读书笔记《集体智慧编程》Chapter 2 : Make Recommendations

本章概要本章主要介绍了两种协同过滤&#xff08;Collaborative Filtering&#xff09;算法&#xff0c;用于个性化推荐&#xff1a;基于用户的协同过滤&#xff08;User-Based Collaborative Filtering&#xff0c;又称 K-Nearest Neighbor Collaborative Filtering&#xff0…

[转载] python中的for循环对象和循环退出

参考链接&#xff1a; Python中循环 流程控制-if条件 判断条件&#xff0c;1位true&#xff0c;0是flesh&#xff0c;成立时true&#xff0c;不成立flesh&#xff0c;not取反 if 1; print hello python print true not取反&#xff0c;匹配取反&#xff0c;表示取非1…

设计一个应用程序,以在C#中的按钮单击事件上在MessageBox中显示TextBox中的文本...

Here, we took two controls on windows form that are TextBox and Button, named txtInput and btnShow respectively. We have to write C# code to display TextBox’s text in the MessageBox on Button Click. 在这里&#xff0c;我们在Windows窗体上使用了两个控件&…

Oracle优化器:星型转换(Star Query Transformation )

Oracle优化器&#xff1a;星型转换&#xff08;Star Query Transformation &#xff09;Star query是一个事实表&#xff08;fact table&#xff09;和一些维度表&#xff08;dimension&#xff09;的join。每个维度表都跟事实表通过主外键join&#xff0c;且每个维度表之间不j…

[转载] python循环中break、continue 、exit() 、pass的区别

参考链接&#xff1a; Python中的循环和控制语句(continue, break and pass) 1、break&#xff1a;跳出循环&#xff0c;不再执行 用在while和for循环中 用来终止循环语句&#xff0c;即循环条件没有False条件或者序列还没被完全递归完&#xff0c;也会停止执行循环语句 如果…

JavaScript | 声明数组并使用数组索引分配元素的代码

Declare an array, assign elements by indexes and print all elements in JavaScript. 声明一个数组&#xff0c;通过索引分配元素&#xff0c;并打印JavaScript中的所有元素。 Code: 码&#xff1a; <html><head><script>var fruits [];fruits[0]"…

[转载] Python入门(输入/输出、数据类型、条件/循环语句)

参考链接&#xff1a; Python中的循环技术 在介绍之前我们先来看看计算机的三个根本性基础&#xff1a; 1.计算机是执行输入、运算、输出的机器 2.程序是指令和数据的集合 3.计算机的处理方式有时与人们的思维习惯不同 &#xff08;以上是引自《计算机是怎样跑起来的》…

第5章 函数与函数式编程

第5章 函数与函数式编程 凡此变数中函彼变数者&#xff0c;则此为彼之函数。 ( 李善兰《代数学》) 函数式编程语言最重要的基础是λ演算&#xff08;lambda calculus&#xff09;&#xff0c;而且λ演算的函数可以传入函数参数&#xff0c;也可以返回一个函数。函数式编程 (简称…

mcq 队列_人工智能能力问答中的人工智能概率推理(MCQ)

mcq 队列1) Which of the following correctly defines the use of probabilistic reasoning in AI systems? In situations of uncertainty, probabilistic theory can help us give an estimate of how much an event is likely to occur or happen.It helps to find the pr…