Results 1 to 3 of 3
- 11-21-2007, 04:16 PM #1
Member
- Join Date
- Nov 2007
- Posts
- 35
- Rep Power
- 0
problem with Vectors and getTotal() function
Hi all,
I don't know how to use vectors to get the total number of amounts it should be in double.
this method is in one of the two classes, and it should count the total amounts that are in the other class (Aggregation) using vectors and return the total in double.
I don't really know how the total is done using vectors I just know how to do it using array lists.
here is what I meant and my solution:(not all methods are there just the methods related to my problem are added)
I hope you help me please.
thank youJava Code:class Coffee private String CoffeeName;//coffee name private Vector mybatch;//vector of batches double getTotalStock() { //NOT SURE //calculate the total amount for(int i =0;i<mybatch.size();i++) Batch total += (Batch)mybatch.elementAt(i).getStock(); //here I guess the type is a class and the way to get the total is wrong how to get the value in double??? } class Batch { private double stock; public Batch(double stock) { //Done //intialize new batch with stock stock = stock; } public double getStock() { return stock; } }
- 11-21-2007, 11:27 PM #2
Java Code:class Coffee { private String CoffeeName; //coffee name private Vector mybatch; //vector of batches double getTotalStock() { //calculate the total amount double total = 0; for(int i = 0; i < mybatch.size(); i++) { // You can do this in one line //total += ((Batch)mybatch.get(i)).getStock(); // or you can always break it down Batch batch = (Batch)mybatch.elementAt(i); total += batch.getStock(); } return total; } } class Batch { private double stock; public Batch(double stock) { //intialize new batch with stock stock = stock; } public double getStock() { return stock; } }
- 11-23-2007, 01:55 PM #3
Member
- Join Date
- Nov 2007
- Posts
- 35
- Rep Power
- 0
Similar Threads
-
Sorting JTable (Vectors) Problem
By ramapple in forum AWT / SwingReplies: 6Last Post: 07-06-2009, 11:15 PM -
Vectors of Vectors or hash-somethings?
By mindwarp in forum New To JavaReplies: 3Last Post: 03-10-2008, 02:57 PM -
Problem with vectors in java
By toby in forum New To JavaReplies: 1Last Post: 08-07-2007, 05:56 AM -
Function declaration problem.
By snooze-g in forum Advanced JavaReplies: 3Last Post: 07-18-2007, 09:15 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks