Size: 687
Comment:
|
Size: 694
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 9: | Line 9: |
|| | |
Line 12: | Line 13: |
}}} | }}} || |
Describe ComparisonJavaJython here.
Description |
In Java |
In Jython |
array of doubles |
xCoord = Double[25] |
xCoord = jarray.zeros(25, "d") |
Size of array |
mx = data.length; |
mx = len(data) |
array assignment |
double re = reFun.evaluate(new double[] {data[i][j][0], data[i][j][1]}); |
re = self.reFun.evaluate([data[i][j][0], data[i][j][1]]) |
Declaring a class type |
public class CalcComplexPlotApp implements Calculation { BR private Control myControl; BR |
1. class CalcComplexPlotApp(Calculation): BR |
||
||