मैं रूबी में कई लाइनें कैसे कह सकता हूं?
मैं रूबी में कई लाइनें कैसे कह सकता हूं?
जवाबों:
#!/usr/bin/env ruby
=begin
Every body mentioned this way
to have multiline comments.
The =begin and =end must be at the beginning of the line or
it will be a syntax error.
=end
puts "Hello world!"
<<-DOC
Also, you could create a docstring.
which...
DOC
puts "Hello world!"
"..is kinda ugly and creates
a String instance, but I know one guy
with a Smalltalk background, who
does this."
puts "Hello world!"
##
# most
# people
# do
# this
__END__
But all forgot there is another option.
Only at the end of a file, of course.
#
उन सभी का उपयोग करना पसंद करता हूं , ज्यादातर क्योंकि यह नेत्रहीन रूप से टिप्पणी की गई पंक्तियों को अलग करता है =begin
/ =end
यहां-वहां विधि का उपयोग करके। और, अच्छी नौकरी।
=begin
और =end
किसी भी व्हाट्सएप से पहले नहीं हो सकता।
=begin...=end
और आखिरी ब्लॉक का उपयोग #
दस्तावेज तैयार करते समय rdoc द्वारा किया जाता है।
=begin
My
multiline
comment
here
=end
#
हर एक लाइन से पहले a और space टाइप करें ? यह बहुत कीस्ट्रोक्स है खासकर अगर मैं लाइन ब्रेक जोड़ना शुरू करता हूं।
के अस्तित्व के बावजूद =begin
और =end
, टिप्पणी करने के लिए सामान्य और अधिक सही तरीका #
प्रत्येक पंक्ति पर उपयोग करना है । यदि आप किसी रूबी लाइब्रेरी के स्रोत को पढ़ते हैं, तो आप देखेंगे कि यह लगभग सभी मामलों में बहु-पंक्ति टिप्पणियाँ हैं।
#
क्योंकि यह अधिक स्पष्ट है। कोड को कमेंट करते समय यह स्पष्ट करना महत्वपूर्ण है कि क्या हुआ है। यदि आप किसी संपादक का उपयोग करके कोड कलरिंग के लाभ के बिना कोड देख रहे हैं, =begin/=end
तो यह पता लगाना कठिन हो सकता है कि कोड को अनदेखा क्यों किया जा रहा है।
#
टिप्पणियों का उपयोग करना चाहिए । (मुझे पता है कि यह दो गिरावट क्यों थी। मुझे लगता है कि स्टैक ओवरफ्लो समुदाय को इसे गलत साबित करना है ...!
3 == three
जहां def three; 1 + 1 + 1 end
। इसलिए दोनों वैध हैं। किसे पड़ी है? का उपयोग करें 3
!
vi
उत्पादन सर्वर पर उपयोग कर रहे होते हैं । जिस स्थिति में, आपको संभवतः अपना विकास वैसे भी नहीं करना चाहिए।
#!/usr/bin/env ruby
=begin
Between =begin and =end, any number
of lines may be written. All of these
lines are ignored by the Ruby interpreter.
=end
puts "Hello world!"
/*I am a\n#nested\ncomment, which really serves no purpose*/
/*I am bound /*to*/ FAIL!*/
यह समझ में आ सकता है कि यदि आपके पास बहुस्तरीय टिप्पणी के अंदर एकल पंक्ति टिप्पणियाँ और कोड हैं, जैसे कि एक दस्तावेज़ जिसमें आप लोगों को उपयोग नहीं करना चाहते हैं, लेकिन आप इसे फ़ाइल से निकालना भी नहीं चाहते हैं।
या तो उपयोग करना:
= शुरू इस है ए टिप्पणी खंड मैथा = अंत
या
# इस # है # ए # टिप्पणी # खंड मैथा
वर्तमान में केवल दो ही rdoc द्वारा समर्थित हैं, जो कि केवल मेरे विचार से उपयोग करने का एक अच्छा कारण है।
=begin
या #
कि दोनों है <<-DOC
और "
वाक्यविन्यास निष्पादन पर बेकार स्ट्रिंग शाब्दिक उत्पन्न होगा।
=begin
(some code here)
=end
तथा
# This code
# on multiple lines
# is commented out
दोनों सही हैं पहले प्रकार की टिप्पणी का लाभ संपादन क्षमता है - इसे कम करना आसान है क्योंकि कम वर्ण हटाए जाते हैं। दूसरे प्रकार की टिप्पणी का लाभ पठनीयता है - लाइन द्वारा कोड लाइन को पढ़ना, यह बताना बहुत आसान है कि किसी विशेष लाइन को टिप्पणी दी गई है। आपका कॉल लेकिन इस बारे में सोचें कि आपके बाद कौन आ रहा है और उन्हें पढ़ना और बनाए रखना कितना आसान है।
=begin
और =end
नेत्रहीन यह न बताएं कि इन-इन-द-कमेंट क्या है ... उदाहरण के लिए क्लोजर, का उपयोग करता है, (comment :whatever)
जो लीड में कहता है कि इसका क्या अर्थ है: stackoverflow.com/questions/1191628/block-comments-in-clo-ure
यहाँ एक उदाहरण है :
=begin
print "Give me a number:"
number = gets.chomp.to_f
total = number * 10
puts "The total value is : #{total}"
=end
सब कुछ आप के बीच में जगह है =begin
और =end
एक टिप्पणी के रूप में माना जाएगा कि कोड की कितनी पंक्तियों के बीच है।
नोट: सुनिश्चित करें कि बीच में कोई जगह नहीं है =
और begin
:
=begin
= begin
=begin
comment line 1
comment line 2
=end
सुनिश्चित करें कि = आरंभ और अंत उस रेखा पर पहली चीज़ है (कोई स्थान नहीं)
यदि कोई व्यक्ति रूबी ऑन रेल्स में एक html टेम्पलेट में कई पंक्तियों पर टिप्पणी करने का तरीका ढूंढ रहा है, तो उदाहरण के लिए = start = end = के साथ कोई समस्या हो सकती है:
<%
=begin
%>
... multiple HTML lines to comment out
<%= image_tag("image.jpg") %>
<%
=end
%>
%> इमेज_टैग को बंद करने के कारण विफल हो जाएगा।
इस मामले में, शायद यह तर्कपूर्ण है कि यह टिप्पणी कर रहा है या नहीं, लेकिन मैं "यदि गलत है" ब्लॉक के साथ अवांछनीय अनुभाग को संलग्न करना पसंद करता हूं:
<% if false %>
... multiple HTML lines to comment out
<%= image_tag("image.jpg") %>
<% end %>
यह काम करेगा।
def idle
<<~aid
This is some description of what idle does.
It does nothing actually, it's just here to show an example of multiline
documentation. Thus said, this is something that is more common in the
python community. That's an important point as it's good to also fit the
expectation of your community of work. Now, if you agree with your team to
go with a solution like this one for documenting your own base code, that's
fine: just discuss about it with them first.
Depending on your editor configuration, it won't be colored like a comment,
like those starting with a "#". But as any keyword can be used for wrapping
an heredoc, it is easy to spot anyway. One could even come with separated
words for different puposes, so selective extraction for different types of
documentation generation would be more practical. Depending on your editor,
you possibly could configure it to use the same syntax highlight used for
monoline comment when the keyword is one like aid or whatever you like.
Also note that the squiggly-heredoc, using "~", allow to position
the closing term with a level of indentation. That avoids to break the visual reading flow, unlike this far too long line.
aid
end
ध्यान दें कि पोस्ट के समय, स्टैकओवरफ़्लो इंजन सिंटैक्स रंगाई को सही ढंग से प्रस्तुत नहीं करता है। अपनी पसंद के संपादक के रूप में इसका परीक्षण करना एक अभ्यास के रूप में जाने देना है। ;)
.pp
मैनिफेस्ट में बहुस्तरीय टिप्पणियों की तलाश है, जो रूबी की तरह सिंटैक्स पर आधारित है, तो आप सी-स्टाइल ब्लॉक टिप्पणियों का उपयोग कर सकते हैं/**/