Jump to content

[Guide] How to make understandable and easy to use code


Recommended Posts

Introduction:

 

Such a subject is the key of everything. It covers all the basics of what has to be done in order to have a well organized smoothly packed software. Easy to use and to understand for some people means that you have to keep everything at the lowest level as far as coding goes while thats not true at all. What you need to know to make such a codepiece is to follow always the conventions of yourself based on:

 

  • Naming Conventions
  • Code Documentation

 

Naming Conventions:

 

What is naming convention:

 

Naming conventions are rules that every developer can and should follow. These rules make your codestyle your very own. Naming conventions involve the conceptional creation of packake/class/object/method/variable names.

 

Why you should use a naming convention:

 

When you make a piece of code what you do is implement your own style in it. That either you want it or not going to be impossible to understand or use for another person IF you dont use a convention that others can follow and depend on when they use your code. Better convention you use better your code will get because what you do is increasing the readability of it. Readability is the single most important thing because better the readability is less time you need to find out what the code does and how it works which means much faster development in every way.

 

In order to understand that here's an example:

 

You want to switch a pack because your previously used pack isnt good enough for your needs. You choose a pack and than you end up with days/weeks spent only with learning how the pack works. Why it would have been easier if there would be a naming concept which could let you know how the code works instead of making you find it out yourself.

 

How to implement naming conventions:

 

To make changes regarding to that what you should think about is what your code does. For example if you want to code an event you use the name of the event and names related to it if you want to code a feature you use the name of the feature and names related to it, doesnt sound hard does it?

After you apply logical and foolproof names for all your packages/classes/objects/methods/variables you are on the road to have a well developed software for yourself and if there's any than for your community.

 

The standard java naming convention:

 

The following rules are general java conventions.

 

  • Packages:
    Names should be in lowercase. With small projects that only have a few packages it's okay to just give them simple (but meaningful!) names:
     
    package pokeranalyzer
    package mycalculator
     
    In software companies and large projects where the packages might be imported into other classes, the names will normally be subdivided.
    Typically this will start with the company domain before being split into layers or features:
     
    package com.mycompany.utilities
    package org.bobscompany.application.userinterface
     
     
  • Classes:
    Names should be in CamelCase. Try to use nouns because a class is normally representing something in the real world:
     
    class Customer
    class Account
     
     
  • Interfaces:
    Names should be in CamelCase. They tend to have a name that describes an operation that a class can do:
     
    interface Comparable
    interface Enumerable
     
    Note that some programmers like to distinguish interfaces by beginning the name with an "I":
     
    interface IComparable
    interface IEnumerable
     
     
  • Methods:
    Names should be in mixed case. Use verbs to describe what the method does:
     
    void calculateTax()
    string getSurname()
     
     
  • Variables:
    Names should be in mixed case. The names should represent what the value of the variable represents:
     
    string firstName
    int orderNumber
     
    Only use very short names when the variables are short lived, such as in for loops:
     
    for (int i=0; i<20;i++)
    {
        //i only lives in here
    }
     
     
  • Constants:
    Names should be upper case:
     
    static final int CONSTANT_EXAMPLE
     
     

 

Code Documentation:

 

What is Code Documentation:

 

Comments are explanatory notes for the humans reading a program. With good name choices, comments can be minimal in a program. The only required comments are block comments just before the class declaration (after any import statements) and just before each method declaration.

 

Other than block comments, one other time to add comments is when your code is unusual or obscure. When something is important and not obvious, it merits a comment.

 

Block Comments:

 

Javadoc is a program that examines the declarations and documentation comments of your code to produce a set of HTML pages. These pages describe your code to other programmers. For an example of the documentation produced, see the Java API documentation.

 

Some of the Javadoc is derived from specially-formatted block comments, which you create as follows:


  • Indent the first line to align with the code below the comment.
     

  • Start the comment with the begin-comment symbol (/**) followed by a return.
     

  • Start subsequent lines with an asterisk *. Indent the asterisks with an additional space so the asterisks line up. Separate the asterisk from the descriptive text or tag that follows it.
     

  • Add a description of the purpose of the class or method.
     

  • Insert a blank comment line between the description and the list of tags, as shown.
     

  • Insert additional blank lines to create various tags.
     

  • The last line begins with the end-comment symbol (*/) indented so the asterisks line up and followed by a return. Note that the end-comment symbol contains only a single asterisk.
     
    /**
    * The main method for the HelloWorld program.
    *
    * @param args Not used
    */
     
     

  • For more information on the tags, see the JAVADOC TAGS
     

 

File Comment Block:

 

Every source code file (*.java) must have a Javadoc comment block just before the class declaration containing the course number, assignment number, name of the file and purpose of the file. One or two lines is usually sufficient to explain the purpose. In addition, you must add the author tag containing your name and the version tag containing the date the assignment is due. For example:

 

import javax.swing.*;

 

/**

* CS-12J Asn 3

* HelloWorld.java

* Purpose: Prints a message to the screen.

*

* @author Jane User

* @version 1.0 8/20/03

*/

public class HellowWorld {

 

The following tags must be used always:

  • @author
  • @version

 

Method Comment Block:

 

Every method must have a Javadoc comment block before the method. For example:

 

/**

* Read a line of text from the shell console.

*

* @return A String input by the user.

*/

The first line is a description of how to use the method.

 

Where appropriate, the following tags must be used:

 

  • @param
  • @return
  • @throws

 


 

Outro:

 

So that was it, the basics of how to create properly documented easy to use and understandable code. For any other questions leave a comment dont use PM's thanks.

 

Since maxcheaters is the biggest leecher forum in history of mmo gaming i feel its better me share my stuff than someone else share it under the name of "MeIzPro" so to see what's going to be my next share or want to vote please visit my den over at max-leeching-s: click

Link to comment
Share on other sites

im absolutely lolled at mxc calling mxb leecher forum thats just so stupid :D

this people doesn't deserve this knowledge [or the facking way this should be written]

 

let's go back home e.e

xD

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Posts

    • 2 Factor Authentication Code for 100% secure login. Account provided with full information (email, password, dob, gender, etc).
    • ready server for sale, also available for testing with ready and beautiful npc zone pvp with custom 2 epic core orfen lvl2 with all maps ready all quests work at 100% ready comm  board with buffer teleport gm shop service anyone interested send me a pm many more that I forget  Exp/Sp : x30 (Premium: x40)    Adena : x7 (Premium: x10)   Drop : x7 (Premium: 10)   Spoil : x7 (Premium: 10)   Seal Stones : x7 (Premium: 10)   Raid Boss EXP/SP : x10   Raid Boss Drop : x3 (Premium: x5)   Epic Boss Drop : x1 Enchants   Safe Enchant : +3   Max Enchant : +16   Normal Scroll of Enchant Chance : 55%   Blessed Scroll of Enchant Chance : 60% Game Features   GMShop (Max. B-Grade)   Mana Potions (1000 MP, 10 sec Cooldown)   NPC Buffer (Include all buffs, 2h duration)   Auto-learn skills (Except Divine Inspiration)   Global Gatekeeper   Skill Escape: 15 seconds or /unstuck   1st Class Transfer (Free)   2nd Class Transfer (Free)   3rd Class Transfer (700 halisha mark)   Subclass (Items required from Cabrio / Hallate / Kernon / Golkonda + Top B Weapon + 984 Cry B)   Subclass 5 Subclasses + Main (Previous subclasses to level 75 to add new one)   Noblesse (Full Retail Quest)   Buff Slots: 24 (28 with Divine Inspiration LVL 4)   Skill Sweeper Festival added (Scavenger level 36)   Skill Block Buff added   Maximum delevel to keep Skills: 10 Levels   Shift + Click to see Droplist   Global Shout & Trade Chat   Retail Geodata and Pathnodes   Seven Signs Retail   Merchant and Blacksmith of Mammon at towns   Dimensional Rift (Min. 3 people in party to enter - Instance)   Tyrannosaurus drop Top LS with fixed 50% chance   Fast Augmentation System (Using Life Stones from Inventory)   Chance of getting skills (Normal 1%, Mid 3%, High 5%, Top 10%)   Wedding System with 30 seconds teleport to husband/wife Olympiad & Siege   Olympiad circle 14 days. (Maximum Enchant +6)   Olympiads time 18:00 - 00:00 (GMT +3)   Non-class 5 minimum participants to begin   Class based disabled   Siege every week.   To gain the reward you need to keep the Castle 2 times. Clans, Alliances & Limits   Max Clients/PC: 2   Max Clan Members: 36   Alliances allowed (Max 1 Clans)   24H Clan Penalties   Alliance penalty reset at daily restart (3-5 AM)   To bid for a Clan Hall required Clan Level 6 Quests x3   Alliance with the Ketra Orcs   Alliance with the Varka Silenos   War with Ketra Orcs   War with the Varka Silenos   The Finest Food   A Powerful Primeval Creature   Legacy of Insolence   Exploration of Giants Cave Part 1   Exploration of Giants Cave Part 2   Seekers of the Holy Grail   Guardians of the Holy Grail   Hunt of the Golden Ram Mercenary Force   The Zero Hour   Delicious Top Choice Meat   Heart in Search of Power   Rise and Fall of the Elroki Tribe   Yoke of the Past     Renegade Boss (Monday to Friday 20:00)   All Raid Boss 18+1 hours random respawn   Core (Jewel +1 STR +1 DEX) Monday, Wednesday and Friday 20:00 - 21:00 (Maximum level allowed to enter Cruma Tower: 80)   Orfen (Jewel +1 INT +1 WIT) Monday to Friday, 20:00 - 21:00 (Maximum level allowed to enter Sea of Spores: 80)   Ant Queen Monday and Friday 21:00 - 22:00 (Maximum level allowed to enter Ant Nest: 80)   Zaken Monday,Wednesday,Friday 22:00 - 23:00 (Maximum level allowed to enter Devil's Isle: 80)   Frintezza Tuesday, Thursday and Sunday 22:00 – 23:00 (Need CC of 4 party and 7 people in each party min to join the lair, max is 8 party of 9 people each)   Baium (lvl80) Saturday 22:00 – 23:00   Antharas Every 2 Saturdays 22:00 - 23:00 Every 2 Sundays (alternating with Valakas) 22:00 – 23:00   Valakas Every 2 Saturdays 22:00 - 23:00 Every 2 Sundays (alternating with Antharas) 22:00 – 23:00   Subclass Raids (Cabrio, Kernon, Hallate, Golkonda) 18hours + 1 random   Noblesse Raid (Barakiel) 6 hours + 15min random   Varka’s Hero Shadith 8 hours + 30 mins random (4th lvl of alliance with Ketra)   Ketra’s Hero Hekaton 8 hours + 30 mins random (4th lvl of alliance with Varka)   Varka’s Commander Mos 8 hours + 30 mins random (5th lvl of alliance with Ketra)   Ketra’s Commander Tayr 8 hours + 30 mins random (5th lvl of alliance with Varka)
    • Have a great day! Unfortunately, we can not give you the codes at the moment, but they will be distributed as soon as trial is back online, thanks for understanding! Other users also can reply there for codes, we will send them out some time after.
    • Ok mates i would like to play a pridestyle server (interluide, gracie w/ever) Is there any such server online and worth playing?
  • Topics

×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock