Java
  Home arrow Java arrow Accepting and Returning Arrays in Java
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Moblin 
JMSL Numerical Library 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
JAVA

Accepting and Returning Arrays in Java
By: Jagadish Chaterjee
  • Search For More Articles!
  • Disclaimer
  • Author Terms
  • Rating: 4 stars4 stars4 stars4 stars4 stars / 10
    2006-07-05

    Table of Contents:
  • Accepting and Returning Arrays in Java
  • Methods accepting arrays as parameters: explanation
  • Methods returning arrays: demo
  • Methods returning arrays: explanation
  • Can we both pass and return arrays at the same time?

  • Rate this Article: Poor Best 
      ADD THIS ARTICLE TO:
      Del.ici.ous Digg
      Blink Simpy
      Google Spurl
      Y! MyWeb Furl
    Email Me Similar Content When Posted
    Add Developer Shed Article Feed To Your Site
    Email Article To Friend
    Print Version Of Article
    PDF Version Of Article
     
     
    ADVERTISEMENT


    Accepting and Returning Arrays in Java


    (Page 1 of 5 )

    In this article, I shall discuss the following topics that concern programming with “methods” in Java using NetBeans IDE: methods accepting arrays as parameters, and methods returning arrays.
    A downloadable file for this article is available here.

    I already introduced NetBeans IDE in my first article at http://www.devarticles.com/c/a/Java/Developing-Java-Applications-using-
    NetBeans/
    . Even though that article is fairly introductory, the next two articles concentrate on the basics of JFC. You can find the next two articles here:

    http://www.devarticles.com/c/a/Java/Working-with-JFCSwing-Controls-using-
    NetBeans-IDE/

    http://www.devarticles.com/c/a/Java/Creating-Control-Buttons-with-NetBeans-
    IDE/

    If you are new to NetBeans IDE, I strongly suggest you go through the above existing articles first, before proceeding with this one.  If you are new to OOP in Java using NetBeans IDE, I suggest you to go through my first article in this same series here. If you are new to developing Microsoft SQL Server based Java applications, I request you go through another article of mine (of course, this is part of a series as well) at:

    http://www.devarticles.com/c/a/Java/Developing-SQL-Server-based-Java-Apps-
    using-NetBeans-IDE/

    I will not be going through each and every step involved in creating and working with projects in NetBeans IDE, as all of those issues have been covered very clearly at the above links.

    Methods accepting arrays as parameters: demo

    In my previous article, we covered working with method parameters together with objects. In this article, I would like to deal with arrays and their communication with methods. 

    Now, open your previous application (or download it from my previous articles) and open “MyCalc.java.”  Modify your code so that it looks something like the following:

      package MyPack; 

      /**
       *
       * @author Administrator 
       */
      public class MyCalc {

        int[] a;

        /** Creates a new instance of MyCalc */
        public MyCalc() {
        }

        public void setValues(int[] p)    {
            a = p;
        }

        public int getSum() {
            int s=0;
            for(int i=0;i<a.length;i++) {
                s += a[i];
            }
            return s;
        }
      }

    Now, go back to the frame “test.java.”  Double click on it to open and finally double click on button to open source view.  Within the source view, modify your “buttonActionPerformed” in such a way that it looks like the following:

      private void btnShowActionPerformed(java.awt.event.ActionEvent evt) {
      // TODO add your handling code here:
            MyCalc obj1 = new MyCalc();
            int[] ar = {12,23,34,45,56,67};
            obj1.setValues(ar);
            int r;
            r = obj1.getSum();
            this.lblMsg.setText("Sum = " + String.valueOf(r));

        }           

    The next section will explain the above code.

    More Java Articles
    More By Jagadish Chaterjee


       · Hello guys. Another contribution on working with parameters of methods in java,...
     

    JAVA ARTICLES

    - Deploying Multiple Java Applets as One
    - Deploying Java Applets
    - Understanding Deployment Frameworks
    - Database Programming in Java Using JDBC
    - Extension Interfaces and SAX
    - Entities, Handlers and SAX
    - Advanced SAX
    - Conversions and Java Print Streams
    - Formatters and Java Print Streams
    - Java Print Streams
    - Wildcards, Arrays, and Generics in Java
    - Wildcards and Generic Methods in Java
    - Finishing the Project: Java Web Development ...
    - Generics and Limitations in Java
    - Getting Started with Java Web Development in...






    © 2003-2008 by Developer Shed. All rights reserved. DS Cluster 1 hosted by Hostway
    Stay green...Green IT