Results 1 to 5 of 5
Thread: Pleae give advise on Typography
- 11-03-2008, 11:14 PM #1
Member
- Join Date
- Oct 2008
- Posts
- 39
- Rep Power
- 0
- 11-03-2008, 11:32 PM #2
How does that relate to writing a java program?Typography is the art and techniques of arranging type, type design, and modifying type glyphs.
- 11-03-2008, 11:35 PM #3
Typography? Is that like unoffcial coding rules and symantics?
Like a class always begins with a capital, final variables are MADE_LIKE_THIS? If that's what you mean then heres a few.
ClassName classVariable = new ClassName(); //classes are uppercase for each word, variables are lower/upper
final Double PI = 3.14; //final variables are all caps
use meaningful names for things. foo and bar are only accepted when testing and should be changed once the idea works.
Always initialize variables. (int x = 0, String name = ""). It's just a good habit to develop.
Top-down or Bottom-up programming make your code more readable. Don't throw everything into the main method.
Heres a general outline
accessor methods(get and set methods) should generally be defined likeJava Code:import java.util.whatever ClassName variable declarations constructor(or main) some code for main/constructor method call some method code for that method some other method you get the idea
You should be able to tell what your method will return just by looking at the name.Java Code:String getName() return name; String setAge(int age) this.age = age;
- 11-03-2008, 11:36 PM #4
Member
- Join Date
- Nov 2008
- Posts
- 2
- Rep Power
- 0
Do you mean layout (ie how you structure your code/program)?
- 11-03-2008, 11:58 PM #5
Similar Threads
-
give interview tips....
By thirumurugan.sethu in forum New To JavaReplies: 4Last Post: 10-03-2008, 11:45 AM -
advise on designing an ejb application
By bobD in forum New To JavaReplies: 0Last Post: 09-03-2008, 09:04 AM -
Is there anyone can give a instruction about Myoodb
By ibmzz in forum JDBCReplies: 0Last Post: 01-19-2008, 09:04 AM -
give me a advise
By sireesha in forum New To JavaReplies: 3Last Post: 12-11-2007, 01:38 AM -
Friends could u plz give me solution 4 this
By Saritha in forum JDBCReplies: 1Last Post: 06-15-2007, 04:42 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks