|
||||||
| Java Help Java Help forum discussing all Java platforms - J2ME, J2SE and J2EE - as well as relevant standards, APIs and frameworks such as Swing, Servlets, JSPs, Applets, Struts, Spring, Hibernate, ANT, EJB, and other Java-related topics. |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
|
|||
|
I get a "Type mismatch: cannot convert from Object to Number" error when using this code below:
Code:
public class ConvolutionMatrixSetting {
private Number [][] coefficients;
private Number scale;
private Number offset;
private int height;
private int width;
private String name;
public ConvolutionMatrixSetting(String name, Number[][] coefficients,
Number scale, Number offset){
this.name = name;
height = coefficients.length;
width = coefficients[0].length;
coefficients = new Number[height][width];
System.arraycopy(coefficients, 0, this.coefficients, 0, height);
this.scale = scale.clone(); // DOES NOT WORK
this.offset = offset.clone(); // DOES NOT WORK
}
|
| Sponsored Links |
|
|
|
|||||
|
What data-type does scale.clone() produce? You may have to do a data-type conversion.
__________________
CodeCall Blog | CodeCall Wiki | Shareware | Linux Forum Chat with other CodeCall members on IRC; connect to irc.codecall.net and join #codecall |
![]() |
| Currently Active Users Viewing This Thread: 1 (0 members and 1 guests) | |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Floating Point random number generator | Paradine | PHP Tutorials | 0 | 08-26-2007 02:09 PM |
| How to calculate the number of pixels in a polygon | extreme | Java Help | 5 | 04-17-2007 10:34 AM |
| I need to generate a random number in PHP | dirkfirst | PHP Forum | 7 | 07-05-2006 09:58 PM |
| Number of Lines on a RichText Box | Lop | Managed C++ | 3 | 06-16-2006 05:19 PM |
| Number of files and directories in folder | dirkfirst | PHP Forum | 4 | 05-30-2006 10:06 AM |
| John | ........ | 223.00000 |
| dargueta | ........ | 168.00000 |
| Xav | ........ | 164.00000 |
| LogicKills | ........ | 20.00000 |
| gaylo565 | ........ | 18.00000 |
| WingedPanther | ........ | 15.00000 |
| |pH| | ........ | 15.00000 |
| Johnnyboy | ........ | 3.00000 |
| navghost | ........ | 1.00000 |
Goal: 100,000 Posts
Complete: 67%