Eiffel The Language
Setting It All Up
Getting Started
Design and Documentation
Miscellaneous
- Old Site (login)
Eiffel The Language
Setting It All Up
Getting Started
Design and Documentation
Miscellaneous
This is an old revision of the document!
Observer basic style rules such as:
For variable naming, the following has been suggested (by Larry Rix):
One may now read without ambiguity:
ALSO: Arguments about code looking like “natural language” are really lost on me. Code is not my favorite spy thriller novel, nor ought it be compared to it. It is code. It is not flowing English prose. It is code. It will always read like code, look like code, behave like code, operate as code, and have a singular purpose of communicating within the context of a larger system of code to accomplish the job needed by its owner through its creator. My spy novel does not have inheritance, polymorphism, and nor will I ever compile it to run it as machine instructions to tell a machine what to do. Such a comparison is thin at best.
Moreover—my spy novel is not terse, nor is it meant to be. It is meant to tell a story. Moreover, my spy novel is not controlling airplanes, boats, cars, trains, MRIs, spacecraft, or other mission critical machines where human life hangs in the balance if that code goes off the rails. So—I'd rather not make flimsy comparisons between the code we design and engineer and English prose.
I will say that I don't want code to be obfuscated as much as possible. Obfuscation leads to bugs. I also agree about not bringing in bad habits from non-Eiffel languages as well. Eiffel is a carefully and thoughtfully, well tested, and well heeled method with a language and IDE to match. Understanding the method first leads one to quickly see how unnecessary those “bad habit” conventions and styles are.
DANGER: There is a danger in the mock code I have used as an example. For example: The nearness of `a_balances' to `balances' means that I can replace references to `a_balances' with `balances' in the routine body and the compiler will not complain. The instant I do so, I have created a bug that may be difficult to identify. This might be especially true if there was a reason for my code to make references to both `a_balances' and `balances'. However—even changing the argument name would leave such a situation of potential error unchanged.
CONCLUSION: I have used the prefixing of arguments, locals, attachment locals, and iteration cursor locals for a long time. They have spared me a lot of grief and bugs. I have learned to rest on the good points of having and using them. What I ought to point out as well is how these differing conventions do not mean I am stopped from using other peoples libraries which use a completely different style! The only place where we ought to agree about convention and style is when we're on the same team, coding within the same system or library. Otherwise, we're all free to agree-to-disagree and do as we please, living happily in our own worlds. If you choose to not use a library I create because of style—so be it. Have fun. Enjoy life. Be successful in all you do. My style won't stop you and yours will not stop me. This is a big pond with room enough for all!