Good Java Style: Part 2
2008-01-05 09:03:00 来源:WEB开发网核心提示:Good java Style: Part 2By Thornton Rose IntrodUCtionThis is the conclusion of a two-part series on Java coding style. In Good Java Style: Part 1 , I introduced
Good java Style: Part 2
By Thornton Rose
IntrodUCtion
This is the conclusion of a two-part series on Java coding style. In Good Java Style: Part 1
, I introduced my case for writing Java code using good habits, eXPlained why we should care about the way our code looks, and illustrated some general elements of good Java style. In this part, I illustrate more elements of good style and bring my case to a conclusion.
Source Files
There are many ways that a Java source file can be organized. Here is one that works well:
File header comment (optional).
Package declaration.
Blank line or other separator.
Import statements.
Blank line or other separator.
Class(es).
Example 1. Bad File Organization.
package org.rotpad;
import java.awt.*;
import javax.swing.event.*;
import org.javacogs.*;
import javax.swing.*;
import java.awt.event.*;
class Foo {
...
}
public class RotPad extends JFrame {
...
}
Example 2. Good File Organization.
package org.rotpad;
// Java classes
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
// JavaCogs classes
import org.javacogs.*;
/**
* RotPad is a simple GUI application for performing rotation ciphers on plain
* text.
*
* @author Thornton Rose
* @version 1.0
*/
public class RotPad extends JFrame {
...
}
//-----------------------------------------------------------------------------
/**
* Foo is ...
*
* @author Thornton Rose
* @version 1.0
赞助商链接