posted 24 years ago
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