KalAajKal.com :: Home Page  
Articles Quotations Lyrics Recipes Info               
Bookmark this Site  Set it as your HomePage                       
 
 
 Article Categories

  Animals articles  Animals
  Automobiles articles  Automobiles
  Business articles  Business
  Career articles  Career
  Computers articles  Computers
  Computer Programming articles  Computer Programming
  Entertainment articles  Entertainment
  Environment articles  Environment
  Family articles  Family
  Food articles  Food
  Health & Medical articles  Health & Medical
  Home & Garden articles  Home & Garden
  Humor articles  Humor
  Internet Marketing articles  Internet Marketing
  Legal articles  Legal
  Leisure & Recreation articles  Leisure & Recreation
  Marketing articles  Marketing
  Other articles  Other
  Politics articles  Politics
  Religion articles  Religion
  Sports articles  Sports
  Technology & Science articles  Technology & Science
  Travel articles  Travel
  Writing articles  Writing
  Finance articles  Finance
  Internet Business articles  Internet Business
  Communications articles  Communications
  Advice articles  Advice
  Self Improvement articles  Self Improvement
  Fashion articles  Fashion
  Reference & Education articles  Reference & Education
 
 
   


   
   
Categories :: Computers : Personal Tech Articles
 


 

Category :: Personal Tech Author :: Gautam Dev 
 
 Article Title :: Optimizing The Java Programming Language
 

Improving JavaBean Coding

The first thing I have is to improve the coding of any JavaBean. We all know any java bean has members and lot of getters and setters. But for large number of member variables it becomes tedious to create the getters and the setters. The Java api can easily make it part of the jdk so that the getters and the setters are generated automatically. There can be a marker interface which any JavaBean class can implement and that will tell the compiler to generate the getter and setter code during compilation process. Of course, if you have any specialized getter or setter, that will override the system generated ones.

Optimizing Garbage Collection

My second idea is on garbage collection. Right now the JVM runs the garbage collection thread and automatically cleans up memory for objects whose reference count is zero. But some of these checks can be achieved during compile time. If some object is created within a method and it is assigned to local variable only during compilation, the compiler can automatically generate garbage collection code when the method exits. This will not happen if the object is returned or attached to some non-local variable. This will make the job of the garbage collector thread much easier and will result in a faster program.

One can even think of giving back the delete functionality optionally. This will result in less work for the compiler and definitely for the JVM. If the devloper is not sure if to use the delete functionality, he may leave it to the compiler or the JVM. For example, the developer did a mistake of calling delete on the same reference twice. This will result in MemoryAlreadyDeletedException (something like that) or plain old NullPointerException. Unlike in C++ world, developer can just take the delete out altogether, and the problem will disappear.

If you like this idea please send me email at gdind2003 .at. gmail. If you like you can also visit my web site at http://www.stock-article.com

Copyright © 2003 Gautam Dev. All rights reserved

I am a software developer and occasional writer.

 
More Personal Tech Articles 
 
 

Content that published and provided on this web site is for informational purposes only. We accept no responsibility for any loss, damages or inconvenience sustained by any person or authority resulting from information published on this web site. We encourage and request you to verify any critical information with the relevant authorities.

   
  Articles  |  Lyrics  |  Quotations  Facts  |  Plants  |  Names  |  Biography  |  Jokes  |  Recipes 
   
Copyright © 2007  KalAajKal.com.  All Rights Reserved.