Introduction
Why Code Conversion Required
Code conversions are important for programmers because
- 80% of the lifetime cost of a software goes to maintenance.
- Any of software hardly maintained by its own author in its whole life.
- Code Conversion improve the readability of software
- Code conversion allows engineer to understand new code more quickly and thoroughly.
- If you ship your code as product, you need to make sure it is well packaged and clean as any other product you create.
File Names
The commonly used file names and suffixes given below
File Suffixes
File Type | Suffix | Description |
Java Source | .java | 1.Name of java file with .java suffix.Example JavaTutorialsCorner.java 2.First Letter of file name must be a caps 3.Java class name and file name must be same |
Java bytecode | .class | Class file will be created after successful compilation |
Common File Names
Some of frequently used file names are given below
GNUmakeFile – The preferred name for makefiles.The gnumake used to build our software
README - The preferred name for file that summarizes the content of a particular directory.
We will learn more java best practice in upcoming chapter.This is basic best practice followed by most of programmers if I missed any thing please let me know, I will update
0 comments:
Post a Comment