Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 08-07-2007, 07:42 PM
Member
 
Join Date: Jul 2007
Posts: 40
elizabeth is on a distinguished road
help with basic java code
Can I this function better?
Code:
//Calculate Csum A = A XOR B byte CountCsum(String m) { byte[] inData = m.getBytes(); byte csum=0; // Don't Count the first byte for(byte n=1;n<m.length();n++) csum ^= inData[n]; return csum; }
In C you normally sending a pointer to an array into the function but here I must convert the string to byte array
an that takes time and memory.

Are java sending a reference to the string or the entire string to the function??
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-07-2007, 07:47 PM
Member
 
Join Date: Jul 2007
Posts: 43
leonard is on a distinguished road
Java is pass-by-reference, so the argument to your method is a copy of the reference to the original String.
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
basic java help adred New To Java 0 03-08-2008 01:36 PM
java code sobhalr New To Java 0 12-28-2007 11:25 AM
Basic Java help, AIM? jkswebsite New To Java 0 11-24-2007 10:10 PM
Help with basic shapes in java carl Java 2D 1 08-01-2007 12:40 AM
Help, basic shapes using java coco AWT / Swing 1 07-31-2007 09:52 PM


All times are GMT +3. The time now is 02:05 AM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org