Originally posted by: Skyclad1uhm1
Originally posted by: JC
Word. :|
Higher level languages are way better 🙂
Wuss!
having coded much 80x86 ASM in my career, i have to agree.
Originally posted by: Skyclad1uhm1
Originally posted by: JC
Word. :|
Higher level languages are way better 🙂
Wuss!
Originally posted by: heartsurgeon
assembly language unlocks the full potential of a computer - maximum speed, ultimate flexibility, incredibly tight (small) code.
for mundane tasks i agree, it is to elegant (and time consuming) to use.
however, if you have a task that takes a long time (sorting a large database, massive image manipulation, etc) or if you are trying to create a real time
enviroment - NOTHING comes close.
i have found that the key to maximizing the utility of assembly language is to create specialized subroutines in assembly that can be called from higher level languages. the assembly code is strictly used for computation intensive tasks, while the remainder to the code is done in a higher language..you get the best of both worlds..also you can build up a library of subroutines that you can recycle in other projects in the future.
assembly language should not be shunned because it is timeconsuming and "difficult"..it is a tool to pulled out and used when the need arises..
Originally posted by: JC
Word. :|
Higher level languages are way better 🙂
Originally posted by: heartsurgeon
assembly language unlocks the full potential of a computer - maximum speed, ultimate flexibility, incredibly tight (small) code.
for mundane tasks i agree, it is to elegant (and time consuming) to use.
however, if you have a task that takes a long time (sorting a large database, massive image manipulation, etc) or if you are trying to create a real time
enviroment - NOTHING comes close.
i have found that the key to maximizing the utility of assembly language is to create specialized subroutines in assembly that can be called from higher level languages. the assembly code is strictly used for computation intensive tasks, while the remainder to the code is done in a higher language..you get the best of both worlds..also you can build up a library of subroutines that you can recycle in other projects in the future.
assembly language should not be shunned because it is timeconsuming and "difficult"..it is a tool to pulled out and used when the need arises..
Originally posted by: LeeTJ
Originally posted by: JC
Word. :|
Higher level languages are way better 🙂
i'm not a programmer so i don't know, but Can you use higher level languages on the hardware level?
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
i dont think you know what your talking about
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
Well the reason colleges switched in droves is because C++ is a lousy entry-level programming language.Originally posted by: BCYL
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I hate the fact that my school switched their entry level programming courses from C++ to Java... now when I take the upper level courses with people younger than me the TAs have to explain "what's a pointer?".... oh come on...
Transcript show: 'Smalltalk is much nicer 😛' ; cr.Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
Originally posted by: gwlam12
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I think it's System.out.println(...);
🙂
Originally posted by: Jugernot
Originally posted by: gwlam12
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I think it's System.out.println(...);
🙂
System.out.println ("Damn you! 🙂");
Originally posted by: manly
Well the reason colleges switched in droves is because C++ is a lousy entry-level programming language.Originally posted by: BCYL
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I hate the fact that my school switched their entry level programming courses from C++ to Java... now when I take the upper level courses with people younger than me the TAs have to explain "what's a pointer?".... oh come on...
You don't have to learn C++ to understand pointers. In essence, pointers are taught perfectly well using Scheme in the intro CS curriculum MIT developed and many programs adopted.
Originally posted by: gwlam12
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I think it's System.out.println(...);
🙂
Originally posted by: BCYL
Originally posted by: manly
Well the reason colleges switched in droves is because C++ is a lousy entry-level programming language.Originally posted by: BCYL
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I hate the fact that my school switched their entry level programming courses from C++ to Java... now when I take the upper level courses with people younger than me the TAs have to explain "what's a pointer?".... oh come on...
You don't have to learn C++ to understand pointers. In essence, pointers are taught perfectly well using Scheme in the intro CS curriculum MIT developed and many programs adopted.
Actually our school is one of those that adopted the Scheme/MIT curriculum... Then C++ used to come after scheme (now it's java instead)... Pointers were first introduced in those C++ courses (back in the days when I took them), now I guess they dont teach them anymore since they switched to java...
now people have no idea what pointers are when they get to upper-level courses, which majority of them uses C...
Originally posted by: Shanti
Originally posted by: BCYL
Originally posted by: manly
Well the reason colleges switched in droves is because C++ is a lousy entry-level programming language.Originally posted by: BCYL
Originally posted by: Jugernot
system.out.printline "Yah it does, Java rules!";
I hate the fact that my school switched their entry level programming courses from C++ to Java... now when I take the upper level courses with people younger than me the TAs have to explain "what's a pointer?".... oh come on...
You don't have to learn C++ to understand pointers. In essence, pointers are taught perfectly well using Scheme in the intro CS curriculum MIT developed and many programs adopted.
Actually our school is one of those that adopted the Scheme/MIT curriculum... Then C++ used to come after scheme (now it's java instead)... Pointers were first introduced in those C++ courses (back in the days when I took them), now I guess they dont teach them anymore since they switched to java...
now people have no idea what pointers are when they get to upper-level courses, which majority of them uses C...
It's nice to know what a pointer is, but unless you are going to be a C or C++ programmer, you'll probably never use one. Or at least you won't know you are using one.