• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Devaka Cooray
  • Tim Cooke
  • Jeanne Boyarsky
  • Ron McLeod
Sheriffs:
Saloon Keepers:
  • Piet Souris
Bartenders:

Code porting nightmare: Javascript to Java

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hello again! I'm still stuck with this.

I have a Javascript code that I have to port to Java, but after doing it the results are different.

I hate to ask and bother you with my problem, specially this, which is pretty complicated.

I assume the Javascript is correct, it's the one that it was working after all...

Javascript
Input is: width=19, depth=19, height=19
Result: count=581, total_z=0, total_y=19, total_x=19, and a long map of trues and falses.

Java
Input is: width=19, depth=19, height=19
Result: count=1093, total_z=19, total_y=19, total_x=19, and a long map of trues and falses.

First of all I don't know how to properly translate the .hasOwnProperty method, I think that what I made is fairly correct.
I think that the problem is on the loops: In the .js code uses arrays and I used Lists, and I also don't know how to do that part.

Well, here is the code. I hope you can understand it!

Javascript:


Java code:


Please, help. ;_;
 
Sheriff
Posts: 67762
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
There is no hasOwnProperty method in Java. Nor is there a need for one. Java and JavaScript are very very different languages. A line by line port is not going to be effective.

I think you'd be better of reverse engineering rather than trying to port.
 
Consider Paul's rocket mass heater.
reply
    Bookmark Topic Watch Topic
  • New Topic