• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

array

 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
How do I make An array if I want to make an instance of a class, in other words
class BB{
private int n;
public calculations();
}
\\\\\\\\Here is the main driver
How can I set up an array of 25 b classes, would it be
BB bk[]=new BB[25]
How would I beable to access each method from the main:
bk[i].calculations();
Thanks for your help
 
Ranch Hand
Posts: 1514
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You have to instantiate each of your array elements if you will be using them.
for(int i = 0; i< bk.length; i++)
bk[i] = new (What ever yoeu constructor is expecting)
}
bk[i].calculations();
Bosun



 
reply
    Bookmark Topic Watch Topic
  • New Topic