`
lfx_cool
  • 浏览: 67598 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

class<<self

 
阅读更多
问:
Hi
   I have code like

   class A
     class <<self
        def first
         -------
        end
        def second
          ------
         end
      end
    end

    What I understood is now the def first and second becomes class methods of class A..Am I right? Is that its only use?

Thanks in advance
Sijo

答:
Yes you understood it well, and it's its only use. You could also type:

class A
def self.first
end
end

or

class << A
def first
end
end
分享到:
评论

相关推荐

    ruby设计模式的代码有好多

    class &lt;&lt; self def instance @instance ||= new end end end ``` 这个例子中,`@instance`变量保证了类的唯一实例。 2. **工厂方法(Factory Method)** 工厂方法模式提供了一个创建对象的接口,但让子类...

    写公共函数文件,要使用到类,将类传参进来.rb

    puts "Hello from #{self.class.name}" end end end end # 另一个文件,例如main.rb,导入并使用公共函数 require_relative 'lib/utility_module' # 创建一个名为Person的类 class Person end # 将Person类...

    Ruby面向对象编程中类的方法与类的扩展

    class &lt;&lt; self def yet_another_class_method # 方法体 end end end ``` 这种方式直接揭示了类方法的本质——它们实际上是类自身的单例方法。 #### 类扩展 类扩展是指向类的单例类中添加方法或模块的过程...

    对Python中class和instance以及self的用法详解

    在Python编程语言中,面向对象编程是一种重要的编程范式,其中,类(class)和实例(instance)是核心概念,而self则是用于引用实例自身的特殊参数。本文将深入讲解Python中class、instance以及self的用法。 一、...

    设计模式

    class &lt;&lt; self attr_accessor :instance end def initialize @state = "I'm the only one!" end def self.instance @instance ||= new end end singleton_instance = Singleton.instance ``` 二、工厂...

    Objective-C类方法中使用self注意事项

    - 访问类属性:类方法可以通过`+ (Class)self`获取自身类对象,然后调用`objc_getClass()`或`class()`方法来获取类名。 - 初始化元类:在类方法中,`self`可以用于访问元类(meta-class),这对于自定义初始化或...

    Python类class参数self原理解析

    1.self只有在类的方法中才会有,其他函数或方法是不必带self的。 2.在调用时不必传入相应的参数。 3.在类的方法中(如__init__),第一参数永远是self,表示创建的类实例本身,而不是类本身。 4.可以把对象的各种...

    iOSputao#iOS-#[self class] 与 [super class]1

    /* For compatibility with old objc-runtime.h header *//* super_class is the firs

    详解Ruby中的方法概念

    - 类方法是在类定义内部通过`self.`前缀定义的,或者使用`class &lt;&lt; self; ...; end`块。类方法可以直接通过类来调用,而不需要先创建类的实例。例如: ```ruby class MyClass def self.class_method puts "This...

    Visual C++ 编程资源大全(英文源码 文件)

    (15KB)&lt;END&gt;&lt;br&gt;6,fileinfo.zip&lt;br&gt;CFileInfoArray: A class for gathering file information recursively through directories(63KB)&lt;END&gt;&lt;br&gt;7,self_extractor.zip&lt;br&gt;A class that allows you to create self ...

    python 中-self-标识符和self标识符.docx

    在Python编程语言中,`self`和`__self__`都是与对象和方法相关的概念,但它们的作用和使用场景略有不同。本文将深入探讨这两个标识符的区别及其在Python中的作用。 首先,`self`是一个约定俗成的参数,通常在定义类...

    MyFrame.class

    MyFrame.class

    Ford's ApproachTo Developing Self-Driving Vehicle

    5 Best in class partners: working with Argo AI 6 How we earn trust-Applying safety processes 7 How we earn trust-Designing for reliability 8 How we earn trust-Delivering a valuable customer experience...

    python实现飞机大战

    用python+pygame实现飞机大战,python解释器3.8,pygame==2.1.0,将环境配置完成后... if self.pos[0] &lt; self.r or self.pos[0] + self.r &gt; 400: self.speed[0] = - self.speed[0] if self.pos[1] &lt; self.r or self.p

    如家宠物网站

    xml=&lt;data&gt;&lt;config&gt;&lt;isShowTitle&gt;0&lt;/isShowTitle&gt;&lt;autoPlayTime&gt;5&lt;/autoPlayTime&gt;&lt;/config&gt;&lt;channel&gt;&lt;item&gt;&lt;link&gt;&lt;/link&gt;&lt;image&gt;images/0411412705084558.jpg&lt;/image&gt;&lt;title&gt;&lt;/title&gt;&lt;/item&gt;&lt;item&gt;&lt;link&gt;&lt;/link&gt;...

    python基础进阶1.6:面向对象之类,对象及__init__(),self相关用法讲解

    在本节"Python基础进阶1.6"中,我们将深入探讨类、对象以及`__init__()`和`self`这两个关键概念。 首先,**类**是面向对象编程的核心,它是创建对象的蓝图或模板。在Python中,我们通过定义一个类来描述一类事物的...

    对python 中class与变量的使用方法详解

    print(self.class_var_1) print(self.object_var_1) print(self.object_var_2) print(self.internal_var_1) # print(local_var_3) # 错误:局部变量仅在定义它的函数内可见 print(global_variable_1) def ...

    PHP5中的this self和parent关键字详解

    `,首先使用`self`关键字来访问`Counter`类的静态属性`$firstCount`,然后对其执行自增操作,并将结果赋值给对象的私有属性`$lastCount`。 - 创建`$countObject`对象并调用`printLastCount`方法时,`self`始终指向`...

    详解Python self 参数

    我们在使用 Python 中的 方法 method 时,经常会看到 参数中带有 self,但是我们也没对这个参数进行赋值,那么这个参数到底是啥意思呢? 2、知识点 2.1 成员函数(m) 和 普通方法(f) Python 中的 “类方法” 必须有一...

    Python3之接口类(InterfaceClass)浅谈

    在Python编程语言中,接口类(Interface Class)是一种设计模式,用于定义子类必须遵循的规范,确保子类具有特定的公共方法。Python不同于某些面向对象的语言(如Java),它并没有内置的接口概念,但可以通过使用`...

Global site tag (gtag.js) - Google Analytics