Can anybody help me understanding the relation between Kernel#puts,
STDOUT
and $stdout?
I thought ‘puts’ is equivalent to ‘$stdout.puts’. Why ‘puts’ doesn’t
give
same result as ‘STDOUT.puts’?
class << STDOUT
def puts(*args)
args[0] = "I say " + args[0] unless args.empty?
super(args)
end
end
puts “hello”
STDOUT.puts “hello”
$stdout.puts “hello”
=> hello
I say hello
I say hello
Thank you in advance
-andre
Puts is a method of Kernel.
From: Daniel F. [email protected]
Reply-To: [email protected]
To: [email protected] (ruby-talk ML)
Subject: Re: beginner Q: Kernel#puts, STDOUT, $stdout relation
Date: Sat, 9 Dec 2006 07:28:20 +0900
Puts is a method of Kernel.
But, doesn’t it depend on what IO object $stdout holds? I redefined
$stdout
‘puts’ function, but why it does not affect Kernel’s puts method?
On 12/8/06, Andreas S [email protected] wrote:
From: Daniel F. [email protected]
Reply-To: [email protected]
To: [email protected] (ruby-talk ML)
Subject: Re: beginner Q: Kernel#puts, STDOUT, $stdout relation
Date: Sat, 9 Dec 2006 07:28:20 +0900
Puts is a method of Kernel.
But, doesn’t it depend on what IO object $stdout holds? I redefined $stdout
‘puts’ function, but why it does not affect Kernel’s puts method?
It’s a tricky relationship, and I’m not quite sure how or why it works
this way, but Kernel#puts does not use STDOUT’s (or $stdout, they can
be different) puts. It does use STDOUT/$stdout (I’m not really sure
which) but IIRC Kernel#puts is implemented directly using the write
method. Caveat here though – the write method is called twice, once
for the argument, then again for the newline. So modifying your source
to rewrite “write” instead of “puts”:
class << STDOUT
def write(*args)
args[0] = "I say " + args[0] unless args.empty?
super(args)
end
end
puts “hello”
STDOUT.puts “hello”
$stdout.puts “hello”
produces:
$ ruby test.rb
I say helloI say
I say helloI say
I say helloI say
Jacob F.
On Dec 8, 2006, at 14:16 , Andreas S wrote:
end
end
puts “hello”
This calls $stdout.write “hello\n”
STDOUT.puts “hello”
$stdout.puts “hello”
=> hello
I say hello
I say hello
PS:
Please mess with $stdout, not STDOUT, if at all possible.
http://blog.segment7.net/articles/2006/08/17/stdout-vs-stdout
–
Eric H. - [email protected] - http://blog.segment7.net
I LIT YOUR GEM ON FIRE!
Ah, yes, I decided to snoop around in the c files and this fits what I
thought I saw in there.
Thanks so much to all.
Regards,
-andre