- xml - AJAX/Jquery XML 解析
- 具有多重继承的 XML 模式
- .net - 枚举序列化 Json 与 XML
- XML 简单类型、简单内容、复杂类型、复杂内容
我目前正在阅读“The Well-Grounded Rubyist”,在第 196 页我看到以下内容:
Suppose you define a method at the top level:
def talk
puts "Hello"
end....
A method that you define at the top level is stored as a private instance method of the
Object
class. The previous code is equivalent to this:class Object
private
def talk
puts "Hello"
end
end...
To illustrate, let's extend the
talk
example. Here it is again, with some code that exercises it:puts "Trying 'talk' with no receiver..."
talk
puts "Trying 'talk' with an explicit receiver..."
obj = Object.new
obj.talkThe first call to
talk
succeeds; the second fails with a fatal error, because it tries to call a private method with an explicit receiver.
我想在我的本地重现这个,所以我把上面的代码放在我创建的 Ruby 文件中。我确实得到了书中提到的结果:
$ ruby talk.rb
Trying 'talk' with no receiver...
Hello
Trying 'talk' with an explicit receiver...
Traceback (most recent call last):
talk.rb:22:in `<main>': private method `talk' called for #<Object:0x00007f9a8499c3e0> (NoMethodError)
我还尝试了以下方法,它产生了与通过 Ruby 解释器运行代码相同的错误:
irb(main):008:0> load 'talk.rb'
Trying 'talk' with no receiver...
Hello
Trying 'talk' with an explicit receiver...
Traceback (most recent call last):
4: from /Users/richiethomas/.rbenv/versions/2.5.3/bin/irb:11:in `<main>'
3: from (irb):8
2: from (irb):8:in `load'
1: from talk.rb:22:in `<top (required)>'
NoMethodError (private method `talk' called for #<Object:0x00007ffb219c95e0>)
接下来,我在 irb
中尝试了相同的代码,这次我得到了以下奇怪的结果:
irb(main):001:0> def talk
irb(main):002:1> puts "Hello"
irb(main):003:1> end
=> :talk
irb(main):004:0> puts "Trying 'talk' with no receiver..."
Trying 'talk' with no receiver...
=> nil
irb(main):005:0> talk
Hello
=> nil
irb(main):006:0> puts "Trying 'talk' with an explicit receiver..."
Trying 'talk' with an explicit receiver...
=> nil
irb(main):007:0> Object.new.talk
Hello
=> nil
如您所见,在最后一个代码示例中,我能够调用 Object.new.talk
并让它打印 Hello
就好像 .talk
是 Object
实例上的公共(public)方法。
我的问题是 - 为什么 talk
方法在我直接在 REPL 中实现时在 Object 类上是公共(public)的,但在我在文件中实现它并将其加载到 REPL 中时是私有(private)的(并且还有当我通过 Ruby 解释器直接在我的 CLI 中运行同一个文件时)?
最佳答案
irb
和 pry
(旁注:我强烈建议使用后者)调整他们的输入以将所有方法声明为公共(public)的(在 REP 的
循环):E
阶段
▶ def foo; end
#⇒ :foo
▶ public_methods.grep /foo/
#⇒ [:foo]
就是这样,没有魔法。
这样做主要是为了简化在此处定义方法然后希望可以从例如访问它的情况下使用它的场景。那里。在 REPL
中,让一切都可以随处访问是值得的。
def pretty_print; self.inspect; end
class A; ...; end
class B; ...; end
A.new.pretty_print
B.new.pretty_print
玩沙盒的时候不要太在意封装、SRP等。
一般来说,这就像用通用助手声明模块并免费将其包含在任何地方。
关于ruby - 当我在 IRB 中声明时,为什么我的顶级方法在所有类上都是公开的(而不是私有(private)的)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53983115/
据我所知,在 C# 中,所有字段默认都是私有(private)的,如果没有另外标记的话。 class Foo { private string bar; } class Foo { strin
这个问题在这里已经有了答案: Why is it allowed to access Java private fields via reflection? (7 个答案) 关闭 6 年前。 使用反
在 C#(和许多其他语言)中,访问相同类型的其他实例的私有(private)字段是完全合法的。例如: public class Foo { private bool aBool; pu
使用私有(private)方法通过将一些决策点重构为单独的方法来降低 CC 会降低实际方法的 CC 并易于阅读,但不会减少在测试中获得完整分支覆盖的工作量。 这合理吗?你有什么现场经验? 最佳答案 好
在下面的例子中,模块outer有一个私有(private)类型Private和一个私有(private)内部模块inner。 inner 能够访问Private(因为子模块可以访问其父级的私有(pri
class Person def one @var = 99 self.two end private def two p @var end end p=P
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我在 Azure 中创建了 VNET。我放入了一个子集 Azure Private Link,它在 VNET 之外和另一台虚拟机中调用 Azure Function。 当我尝试通过专用 IP 调用专用
我正在尝试获得良好的 Ruby 编码风格。为防止意外调用具有相同名称的局部变量,我总是在适当的地方使用 self.。但是现在我偶然发现了这个: class MyClass "method" a
今天遇到一个案例类构造函数的奇怪问题。我想将构造函数设为私有(private),看来这不是问题。所以我已经在我的一个项目中尝试过它并且它有效。但在另一个项目中,我可以调用私有(private)构造函数
我想坚持使用记录,并且不想返回对象。所以我想知道是否可以将记录的字段设置为私有(private)?或者创建记录的私有(private)成员。其他具体类型(例如可区分联合)怎么样? 或者,这个要求是否违
我正在通过 Flickr API 进行经过身份验证的调用来访问照片。但我只得到我的公开照片,而没有任何私有(private)照片。 下面给出的是我正在使用的代码, Flickr f; Request
这两个类的行为不同;原因似乎与使用 private[this] 声明而不是 private 有关。有人可以解释一下为什么吗? 私有(private): class Person( private
在 private 中的 1000 秒 private 之后,我想到可能不需要它 public class Outer { private static class Inner { // yo
我有以下代码: class C { private enum E { // ... } } private extension C { func f(e: E)
OOP 语言中是否有object-private 的概念??我的意思是比经典的私有(private)访问限制更多? Private (or class-private) restricts the a
swift 3.0 我知道fileprivate访问级别修饰符将函数/属性的使用限制在声明它的源文件和 private - 仅限于声明的词法范围。但似乎这条规则不适用于扩展。例如。此代码有效: cla
即将推出的 Delphi 版本中启用该功能的功能怎么样? 也许它可能是一个编译器开关,促进所有 ** private **s to ** strict private **小号。 ... 或者它可能是
我可以通过将函数放入类的私有(private)扩展中来创建私有(private)函数,而不是通过不断调用 private func functionName(){} 来创建新的私有(private)函
部署专用端点并需要专用 IP 地址作为输出,但似乎无法正确获取值查询。下面的结果是“模板输出'主机名'无效:语言表达式属性|'privateIPAddress'具有无效的数组索引..(代码:Deplo
我是一名优秀的程序员,十分优秀!