We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Hi,
I had a discussion with my lecturer, showing him a project I made on processing. He seemed confused because he said that wasn't proper Java. I have made a game using processing and Im thinking of downloading Android Studio and trying to make it on that to put onto the android store. So I was just wondering whats the difference between Java used in processing and "real" java? is it hugely different? and is it a very steep learning curve to go from making a game on processing and then rebuilding it on android store in Java?
Thanks, Glen
Answers
It is essentially Java; but from my understanding (I've not written any pure Java applications) Processing removes the need to do a lot of boilerplate work to get things up and running; and it wraps sketch code - including 'Class tabs' - up in its own Class (I'm probably over-simplifying).
So in that sense it's not Java; but the underlying language is still Java; so the syntax will be the same... From a Computer Science perspective you're probably expected to learn all the tedious boilerplate stuff and the Class structures are likely to be far more complex :/
Having started down the path of JavaScript development there's no way I'm switching to a lumbering beast like Java; whatever the advantages :P
I have heard of JavaScript but never used it, so this might be a silly question. what exactly is it? is it like an improved version of Java? and can you use that to make maps on android and IOS?
Java vs JavaScript
There are lots of articles like this one on the web. The point is that apart from some superficial syntax similarities they are completely different programming languages.
Some excerpts from:
http://forum.Processing.org/two/discussion/6863/can-this-be-made-a-class-variable
Processing's pre-processor gathers all ".pde" tabs together and wraps 'em all up as 1 top class!
Therefore our own classes & interfaces there become nested to that PApplet "sketch mega class"!
There are 3 types of nested classes:
Conventionally in the Java world, anonymous class instantiation is the only type considered by programmers!
Inner classes are mostly a Processing thing aFaIK. And static nested classes are even a rarer sight anywhere!
A separate ".java" tab would allow us to have top classes in it.
A regular top class is the opposite of a nested 1. And can have both static & non-static members! \m/
It is indeed the logical solution for Java's point-of-view. However, not so much for Processing's! Here's why: @-)
Look it up. It has similar syntax to Java, but otherwise no relation at all. It's a scripting language initially developed for use on the web; processingJS runs JavaScript in the browser; p5js is pure JS; and JS is gaining favour on the server side.
If you want to build mobile apps look up phonegap (there are other options): you can write html, css and JS and package it up as an app for both iOS and Android...
Java is perhaps considered a more 'serious' programming language; and more robust when building large applications. But we're straying away from your original question: I know that Processing does hide some features, like private members; but someone experienced with Java will have to tell us why your lecturer didn't think Processing code was 'proper' Java...
This thread was like an episode of LOST. My questions were answered but now I have soooo many more! haha
cheers guys
private
norprotected
or anything else!You're being pedantic :P
Let's put it another way: the way Processing is set up means that some features, like private members, are not available...
The point being that I imagine private members is the sort of thing you'll be learning about on a programming course, so their omission might seem strange to a lecturer.
I concur w/ ya! But keep in mind that access keywords are still in effect!
If we define any class in some ".java"-suffixed tab and it tries to access any
private
memberfrom ".pde"-suffixed tabs, it won't be allowed as expected! [-X
I watched some tutorials online of game programming in Java and so far it doesn't seem that different. Apart from some syntax differences and having to import things it seems to be pretty much the same layout and procedure so I'm guessing it shouldn't take me to long to change my code from processing Java to Java used in android studio.
You can make your code look like proper Java by including the access modifiers yourself, for instance Processing is quite happy with
public void setup () {
and
public void draw (){