当前位置:早雪网网络学院编程文档其他语言 → Ruby and Subversion

Ruby and Subversion

减小字体 增大字体 作者:未知  来源:supcode.com收集整理  发布时间:2005-7-1 14:44:51

Feedback on "Ten Things a Java Programmer Should Know About Ruby"

This is a compilation of feedback I received for a list of things Java programmers should be aware of when looking at Ruby. This list is not the final version, nor are all (most) of the ideas in this list mine. This is merely a temporarty holding spot for these ideas while I assemble a talk/article/presentation on the topic.

If you have a problem with anything on this list, please bring it up with the person who made the suggestion (i.e. not me!)

However, if you have further suggestions for this list, feel free to drop me a note at jim@weirichhouse.org.

bullet Boolean methods end in ?. Dangerous methods end in !
bullet you can fit in your mind and write code without looking at the docs every six minutes
bullet less syntax and less typing
bullet Discipline. Because of its inherent flexibility, Ruby require more self-discipline
bullet "." (dot) is a method call operator. "::" (colon-colon) is a scope operator.
bullet Ruby classes are Objects (therefore String.new, not new String())
bullet Everything is an Object
bullet Ruby does not have type casting.
bullet Compared to Java, XML is agile. Compared to Ruby, XML is Heavy.
bullet Ruby has O/R mappers, so find your Ruby "hibernate", but drop any preconceptions.
bullet Don't worry about early performance optimization
bullet Enjoy closures and blocks
bullet No method overloading
bullet Don't worry about interfaces, enjoy Duck Typing.
bullet Reflection in Ruby is much easier than in Java, and more deeply into the language than the java.lang.reflect tack-on.
bullet That you can write Ruby in Java (http://jruby.sourceforge.net)
bullet Everything is an expression.
bullet local_variable, @instance_variable, $global_variable, Constants, (and @@class_variables)
bullet Java static methods do not (quite) translate to Ruby class methods.
bullet you can have variable number of parameters, and multiple return values
bullet Ruby is not a Silver Bullet, unlike Java, right? :-)
bullet Ruby is a language to be used everywhere. You use it even in templates. No need for "Velocity/JSP."
bullet Web-development is possible with other languages besides Java.
bullet Many things that you're used to thinking of as syntax are now just
bullet Ruby is strongly typed, not statically typed
bullet Ruby has extensive reflection capabilities
bullet Ruby is dynamic. You can add, remove and modify objects, classes and methods at runtime.
bullet REXML vs. JAXP. I rest my case.
bullet KISS
bullet Think in terms of methods (behaviors) instead of classes.
bullet you cannot rely on the compiler to catch trivial mistakes
bullet No explicit types. Probably the most disconcerting thing for a javahead
bullet ruby has shortcuts for accessor methods which reduces alot of redundant coding in java
bullet you can use string interpolation, ex: "x: #{@myvar}" instead of having to say "x:" + myvar'
bullet no semi-colons, optional parenthesis
bullet Ruby classes are always "open".
bullet C extensions/wrappers are *much* easier in Ruby than JNI interfaces in Java
bullet Ruby has MVC and OO programming and libraries, but drop any preconceptions.
bullet In Ruby data is strongly typed, but variables are *not*
bullet Once you start coding Ruby, going back to Java is painful.
bullet CamelCase for class names, names_with_underscores for methods and variables.
bullet stop writing so much code
bullet ri is your friend. irb is your other friend.
bullet eval
bullet the builtin classes are much faster because they're written in C and not Ruby
bullet Avoid external utility classes
bullet Use class methods to define pseudo-compile directives
bullet You probably don't need Factories
bullet Enumerable is your friend
bullet Typing is the enemy
bullet No external configuration files
bullet method_missing
bullet Singleton methods
bullet Ruby packaging vs Java packaging
bullet ruby has multiple inheritance through mixins (this is sooo nice to have)
bullet writing code in ruby, can improve the code you write in java
bullet Ruby is agile, perfectly suited for XP
bullet Ruby's OO is message based.
bullet Fixed what's wrong with Perl
bullet Fixes what's wrong with Python
bullet It's super productive (like Perl, Python and Smalltalk)- maybe 5-10x Java.
bullet Is a lot like Smalltalk, but doesn't look as funny
bullet Is a lot like Javascript, but more OO and more for ful app development
bullet Blocks and Closures
bullet Open Classes
bullet Duck Typing
bullet "finally" is called "ensure"
bullet Use blocks for transactional behavior like like File.open does.
bullet Help at: http://ruby-lang.org/en, http://ruby-doc.org/, news:comp.lang.ruby, irc:ruby-talk
bullet An instance of a class can be extended to be subtly different, without needing to subclass.
bullet you can change your mind about whether .foo is a simple property or a complex method call, without affecting the interface to your class.
bullet HEREDOC strings with variable interpolation make large chunks of output really easy to construct.
bullet For good (but subtle) reasons, you have to leave the '++' and '--' behind.

Top 10 Things I Like About Subversion

[1] [2]  下一页

[数据载入中...] [返回上一页] [打 印]