Advertisement

GLbasic?

Started by June 11, 2014 08:01 PM
10 comments, last by MrTAToad2 10 years, 5 months ago

Hello everyone,

I'm trying to learn java.

I'm just at the beginnen (at variables precisely), but it's already really hard for me.

So i saw someone, who started with http://www.glbasic.com/. It has to be much more easy to learn.

Is it a good idea to start learning this and then move on to Java, or doesn't have they anything to do with each other?

If you think this isn't a good idea, do you please have a good tutorial or way to learn Java for me?

Many thanks!

Not sure how useful it will be to learn GLBasic. Seeing as there's a "free" and "premium" version, and its featureset seems to be really limited.

I would start with Java. Or Python, or anything that is proven and has a huge userbase that is able to help you with things directly and indirectly.

Imagine yourself searching for solutions to problem using this limited windows-only compiler suite.

With Java and Python people here can help you, and you can find tons of resources and solutions on the internet.

Advertisement


I would start with Java.

+1

https://www.udacity.com/course/cs046

I think, therefore I am. I think? - "George Carlin"
My Website: Indie Game Programming

My Twitter: https://twitter.com/indieprogram

My Book: http://amzn.com/1305076532

Here is a free e-book that is great for new folks to Java [LINK] . Just read it, and do the assignments.

Excellent tool for new folks to programming.

( May also want to grab Eclipse IDE )

I cannot remember the books I've read any more than the meals I have eaten; even so, they have made me.

~ Ralph Waldo Emerson

Using external libraries isn't supported in the free version of GlBasic. No thanks.

Stick with Java, you will make it over the "syntax hump" at some point, and then it will all be about learning concepts.


I'm just at the beginnen (at variables precisely), but it's already really hard for me.

What specifically are you having trouble with?

Stay gold, Pony Boy.

Well yeah i started with the oracle java tutorial, i understand it, till they explain some about variables and data types (http://docs.oracle.com/javase/tutorial/java/nutsandbolts/datatypes.html). There's a lot of theory, but for a beginner just as me, it's really hard to understand and remember, without any experience.

BTW: THANKS TO ALL!!!! I try starting udacity first then read the book and i hope i learn something from that

Advertisement

It can be quite confusing at first, but data types are very easy once you get to use them a bit.

A variable is a container that holds a specific type of information

A data type is what the information actually is. ( IE: words, numbers, classes e.t.c. )


String w = "Hello World!";
int x = 1;
double y = 2.4;

String int and double are data types.

w x and y and variables.

Note: All variables must have a data type when you first declare them.

I cannot remember the books I've read any more than the meals I have eaten; even so, they have made me.

~ Ralph Waldo Emerson

Hi,

If you are having trouble learning JAVA, it's not a bad idea to start with BASIC. That's what BASIC was designed for anyways. To help people who have never programmed to learn the basics of programming. JAVA, C++, etc. are languages that you can learn later. I can tell you that today's BASIC is in most cases far from the BASIC that was first introduced long ago. In some cases like Visual Studio no matter what language you program in it all compiles to the same code (.net). So it just comes down to what you can understand. If you can't understand JAVA right now, learn BASIC and then move on once you are comfortable. I also tried to learn JAVA at one time, but then I went to BASIC and have pretty much stayed there ever since.

Visual Studio no matter what language you program in it all compiles to the same code (.net)

Native C/C++ (without any MS's MFC additions) compile to the native PE executable format.

So it just comes down to what you can understand.

I'm not sure what compiling to .net has to do with anything really.

Visual Studio no matter what language you program in it all compiles to the same code (.net)

Native C/C++ (without any MS's MFC additions) compile to the native PE executable format.

So it just comes down to what you can understand.

I'm not sure what compiling to .net has to do with anything really.

what I was trying to say is that in general Visual studio is designed so that a programmer can program in the language he is comfortable with and still produce the same type of .net compiled code. I'm sure you can do other types of compiles, but I was just saying in general. It all comes down to what someone can understand and a beginner should start off easy and then move on to harder languages.

This topic is closed to new replies.

Advertisement