I want to write a Java function that will get as input either int[], float[] or double[]. The algorithm is exactly the same (some kind of a scalar product). How can I write a single function that will be able to handle all types of numeric arrays?
|
|
You can write one method to do them all, however, it won't be anywhere near as readable of efficient. You have to make a choice between what is a generic or an efficient solution.
prints
If you are only working on relatively small arrays, the generic but less efficient solution may be fast enough. |
|||
|
|
|
There is no easy way to handle this in Java. You can:
Note that this approach increases memory consumption significantly.
|
|||||||
|
|
You cannot code this in Java without either:
The only common supertype of You either need to accept that you will have duplicate code, or change the representation type for the arrays; e.g. use |
|||
|
|
Use For more info read Bounded Type Parameters |
||||
|
I see two options: 1) You can create a new class which allows int[], float[], double[] in the contructor and saves them. 2) You allow Object[] and check for int / float / double. (You have to convert them first) |
|||||
|
|
|||||
|
|
Hope this will help you.. I have tested this code and it does what you have asked for, how to implement this logic is upto you !
OUTPUT
|
|||||
|