The McLeodGaming forums were permanently closed on April 30th, 2020. You are currently viewing a read-only archive.
View unanswered posts | View active topics It is currently Fri May 15, 2020 9:35 am



 [ 155 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9 ... 11  Next
Programming Languages 
Author Message
User avatar

Joined: Sat Aug 16, 2008 8:38 am
Posts: 6670
Location: Darkest Antartica
Country: Pakistan (pk)
Gender: Male
Skype: Thaiberium
Currently Playing: The Game
You could google NetBeans...

_________________
Image


Mon Mar 23, 2009 12:50 am
User avatar

Joined: Mon Aug 11, 2008 6:40 am
Posts: 1648
Location: ... Not America
lool I did
They have so much versions of net...
...
C++ version? I'm so getting this.


Mon Mar 23, 2009 6:33 am
User avatar

Joined: Sat Aug 16, 2008 8:38 am
Posts: 6670
Location: Darkest Antartica
Country: Pakistan (pk)
Gender: Male
Skype: Thaiberium
Currently Playing: The Game
Do you even know the difference between compilers and interpreters? I'd feel sorry if you got the wrong one.

_________________
Image


Mon Mar 23, 2009 11:10 am
User avatar

Joined: Sun Aug 17, 2008 5:39 pm
Posts: 1248
Gender: Anime Girl
Skype: Nacritico
Currently Playing: LOL
Thaiberium wrote:
Do you even know the difference between compilers and interpreters? I'd feel sorry if you got the wrong one.


Well, you said it as if they were THAT different. :sweat:

_________________
SALU2'S Image
_________________
Original forum: show
join date: January 08, 2007
Posts on old MG: 2432, level 16

Image
Image chóu


Mon Mar 23, 2009 1:43 pm
User avatar

Joined: Mon Aug 11, 2008 6:40 am
Posts: 1648
Location: ... Not America
Thaiberium wrote:
Do you even know the difference between compilers and interpreters? I'd feel sorry if you got the wrong one.

compiler's compile the scripts and make a program with it
Iunno what interpreter is, but i don't really care


Mon Mar 23, 2009 2:46 pm
User avatar

Joined: Sun Aug 17, 2008 5:39 pm
Posts: 1248
Gender: Anime Girl
Skype: Nacritico
Currently Playing: LOL
Claus wrote:
Thaiberium wrote:
Do you even know the difference between compilers and interpreters? I'd feel sorry if you got the wrong one.

compiler's compile the scripts and make a program with it
Iunno what interpreter is, but i don't really care


More or less the same idea.

The only differece you should care about is that using an interpreter creates your file faster, but it works slower than a compiled file...

the best solution is to use an interpreter while creating the application (for debugging and testing), but once you know your program is ready to go, you should use a compiler.

_________________
SALU2'S Image
_________________
Original forum: show
join date: January 08, 2007
Posts on old MG: 2432, level 16

Image
Image chóu


Mon Mar 23, 2009 5:30 pm
User avatar

Joined: Sat Aug 16, 2008 8:38 am
Posts: 6670
Location: Darkest Antartica
Country: Pakistan (pk)
Gender: Male
Skype: Thaiberium
Currently Playing: The Game
Wrong wrong wrong Narc. It's easy to think that compilers are faster than interpreters, however, this is not true. The speed depends on how the implementation of that PL is engineered.

Besides, a Compiler is a translator, usually translating your code (sometimes optimizing it too) in to machine or assembly language. An interpreter does not translate the program, but instead, directly executes the code

_________________
Image


Tue Mar 24, 2009 4:30 am
User avatar

Joined: Sun Aug 17, 2008 5:39 pm
Posts: 1248
Gender: Anime Girl
Skype: Nacritico
Currently Playing: LOL
Thaiberium wrote:
Wrong wrong wrong Narc. It's easy to think that compilers are faster than interpreters, however, this is not true. The speed depends on how the implementation of that PL is engineered.

Besides, a Compiler is a translator, usually translating your code (sometimes optimizing it too) in to machine or assembly language. An interpreter does not translate the program, but instead, directly executes the code


Nac is confussed now /:| ...

How come something that directly translate a program to "computer lenguage" runs slowly that something which should be translated when the program is running? :doh:

Either that, or I understanded nothing from my highschool's computer class.

_________________
SALU2'S Image
_________________
Original forum: show
join date: January 08, 2007
Posts on old MG: 2432, level 16

Image
Image chóu


Tue Mar 24, 2009 9:08 am
User avatar

Joined: Sat Aug 16, 2008 8:38 am
Posts: 6670
Location: Darkest Antartica
Country: Pakistan (pk)
Gender: Male
Skype: Thaiberium
Currently Playing: The Game
I don't exactly know the nuts and bolts of interpreters, but I'm guessing it has to do with virtual machines (JVM for Java comes to mind).

What I do know, however, is that programming hardware (microprocessors) are a pain the f*** a**, hence, compilers.

_________________
Image


Tue Mar 24, 2009 3:52 pm
User avatar

Joined: Mon Aug 11, 2008 6:40 am
Posts: 1648
Location: ... Not America
ehhh... I'll just get the 400MB compiler Microsoft gives
Even though I want my computer clean, it's still fast
Anyways, what I love about C is the capabilities it has for command prompt program
like cout and cin, they have tons of things of stuff to do with command prompt


Tue Mar 24, 2009 5:32 pm
User avatar

Joined: Sun Aug 17, 2008 5:39 pm
Posts: 1248
Gender: Anime Girl
Skype: Nacritico
Currently Playing: LOL
Claus wrote:
ehhh... I'll just get the 400MB compiler Microsoft gives
Even though I want my computer clean, it's still fast
Anyways, what I love about C is the capabilities it has for command prompt program
like cout and cin, they have tons of things of stuff to do with command prompt


You know that most programming lenguages have a input/output command, such as cout (c-out) and cin (c-in), right?

_________________
SALU2'S Image
_________________
Original forum: show
join date: January 08, 2007
Posts on old MG: 2432, level 16

Image
Image chóu


Tue Mar 24, 2009 9:50 pm
User avatar

Joined: Mon Aug 11, 2008 6:40 am
Posts: 1648
Location: ... Not America
Nac wrote:
Claus wrote:
ehhh... I'll just get the 400MB compiler Microsoft gives
Even though I want my computer clean, it's still fast
Anyways, what I love about C is the capabilities it has for command prompt program
like cout and cin, they have tons of things of stuff to do with command prompt


You know that most programming lenguages have a input/output command, such as cout (c-out) and cin (c-in), right?

yeah, like Console.Writeline, but C++ is more, stable and unique


Wed Mar 25, 2009 6:38 am
User avatar

Joined: Sat Aug 16, 2008 8:38 am
Posts: 6670
Location: Darkest Antartica
Country: Pakistan (pk)
Gender: Male
Skype: Thaiberium
Currently Playing: The Game
Claus wrote:
yeah, like Console.Writeline, but C++ is more, stable and unique

Ahahahaha, nice one.

C++ is Microsoft's response to Java. And we all know what Microsoft is like.

I'm going to learn some python, so perhaps I can start taking full advantage of Ren'Py.

_________________
Image


Wed Mar 25, 2009 12:36 pm
User avatar

Joined: Sun Aug 17, 2008 5:39 pm
Posts: 1248
Gender: Anime Girl
Skype: Nacritico
Currently Playing: LOL
Thaiberium wrote:
Claus wrote:
yeah, like Console.Writeline, but C++ is more, stable and unique

Ahahahaha, nice one.

C++ is Microsoft's response to Java. And we all know what Microsoft is like.

I'm going to learn some python, so perhaps I can start taking full advantage of Ren'Py.


If you know java and C++, then python is going to be a piece a cake to you.
That lenguage is like doing 1+1 togheter.

_________________
SALU2'S Image
_________________
Original forum: show
join date: January 08, 2007
Posts on old MG: 2432, level 16

Image
Image chóu


Wed Mar 25, 2009 12:45 pm
User avatar

Joined: Sat Aug 16, 2008 8:38 am
Posts: 6670
Location: Darkest Antartica
Country: Pakistan (pk)
Gender: Male
Skype: Thaiberium
Currently Playing: The Game
Yeah, it isn't that hard, I'll try doing something complicated with and I might show it to you later, but right now I'm hunting for resources that will be used in Ren'Py.

_________________
Image


Wed Mar 25, 2009 12:50 pm
Display posts from previous:  Sort by  
 [ 155 posts ]  Go to page Previous  1 ... 3, 4, 5, 6, 7, 8, 9 ... 11  Next

Who is online

Users browsing this forum: No registered users and 1 guest


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

cron
Powered by phpBB® Forum Software © phpBB Group
Designed by ST Software for PTF.