My Area
Register
Donate
Help
FAQ
About us
Links
Articles
Competitions
Interviews
About HHC.com DJs
T-shirts and merchandise
Profile
Register
Active Topics
Topic Stats
Members
Search
Bookmarks
Add event
Label search
Artist search
Release / Track search

Raver's online
 Total online 2025
 Radio listeners 172+
Email Us!
Username: Password:

  Lost password
 Remember my login 
 All forums
 General discussion
 

Computer Errors

 Printer friendly
Page: 
of 2

Author Thread  
B.C
Advanced Member



United Kingdom
1,747 posts
Joined: Jul, 2002


35 hardcore releases
B.C has donated money to the site B.C has attended 10 events
Posted - 2004/02/12 :  13:02:40  Show profile  Send a private message  Reply with quote
within Java these problems would seem to be:-

* Translation error-when the compiler or JVM simply cannot interpret or translate the object code into machine code. such as a missing semi-colon or some other piece of wrong coding.

* Linkage error-a fault when using 2 or more methods where either data is nopt of the same variety eg. string, integer...or simply if using 2 different classes and the object coding not being linked together using suitable methods.

* Execution error-when there is a problem executing the code at run-time...the code is interpreted,transferred to machine code but is then NOT within the boundaries of the construct. eg. a string being displayed outside of the running program's window or trying to do a task that is simply not possible.

depending on what context these errors are taken in ie. Java, Operating Systems, C++, Visual Basic and what level you are at in these areas these are the best answers i can give you in my experince of Java.

"Belong To The Hardcore Regime! Wake Up From Your Synthetic Dreams!....WE Are Your Future!!!"


__________________________________
"The music was like new, black, polished chrome
that came over the summer like liquid night"


Alert moderator Go to top of page
radiokate
Advanced Member



United Kingdom
791 posts
Joined: Mar, 2002
Posted - 2004/02/12 :  18:17:12  Show profile  Send a private message  Visit radiokate's homepage  Reply with quote
aiiiii u lot r still ignoring the fact that its homework not errors Im personally experiencing...

quote:
Originally posted by DJ-JA:
execution error - something goes wrong when say a program has tryed to run
translation error - probably a problem with the thing while u are compiling it
linkage error - may be something to do with functions not linking properly in a program

these are just sorta things while programming that i thought sounded right, i really should know this im doing computing at college





I'll go with these Im sure these are the ones I had in the book... but I lost it.... yep Im doin computing too... 2nd year a levels f-ing bollox it is.... ha ha ha

ohhhh just read bc in the mix's answers they look like the book ones too (i lost my book when i was stoned) but yeah.... anywho........... i wanna use Java all I can use is turbo pascal and well thats just dog shyte

Spine Tingling Sensations To Leave Your Mind Numb...

http://www.geocities.com/hardcore_lyrics

Kaitei Hoe


__________________________________
Spine Tingling Sensations To Leave Your Mind Numb...

http://www.geocities.com/hardcore_lyrics

Kaitei Hoe


Alert moderator Go to top of page
Shade0
Senior Member



United Kingdom
456 posts
Joined: Jan, 2004


2 hardcore releases
Posted - 2004/02/12 :  20:11:36  Show profile  Send a private message  Visit Shade0's homepage  Reply with quote
quote:
Originally posted by radiokate:
aiiiii u lot r still ignoring the fact that its homework not errors Im personally experiencing...

quote:
Originally posted by DJ-JA:
execution error - something goes wrong when say a program has tryed to run
translation error - probably a problem with the thing while u are compiling it
linkage error - may be something to do with functions not linking properly in a program

these are just sorta things while programming that i thought sounded right, i really should know this im doing computing at college





I'll go with these Im sure these are the ones I had in the book... but I lost it.... yep Im doin computing too... 2nd year a levels f-ing bollox it is.... ha ha ha

ohhhh just read bc in the mix's answers they look like the book ones too (i lost my book when i was stoned) but yeah.... anywho........... i wanna use Java all I can use is turbo pascal and well thats just dog shyte

Spine Tingling Sensations To Leave Your Mind Numb...

http://www.geocities.com/hardcore_lyrics

Kaitei Hoe





ok.. missed the part about homework. i wasnt seein too straight when i first read the thread. Anyway, matey at the tops got some good answers. Why dont you try google for the answers.. Dont mention java in your answer though because i doubt your doin it. Also java errors like that would only really appear at compilation. Unlikely youd get far enough to distrib the prog.

Chris.SHADE


__________________________________
Christian-J
---------------------------


Alert moderator Go to top of page
Simon
Advanced Member



Belgium
5,001 posts
Joined: Dec, 2001
Simon has donated money to the site Simon has attended 5 events
Posted - 2004/02/12 :  21:41:32  Show profile  Send a private message  Visit Simon's homepage  Reply with quote
quote:
Originally posted by radiokate:
i wanna use Java all I can use is turbo pascal and well thats just dog shyte




Well once you've mastered Pascal, you'll be able to program in a lot of other languages, as the theories are practically all the same, it's just done slightly different.



___________________________________________________________


"Hush little baby, don’t say a word
And never mind that noise you heard
It’s just the beast under your bed,
In your closet, in your head"


__________________________________
"...The Outsider"


Alert moderator Go to top of page
Shade0
Senior Member



United Kingdom
456 posts
Joined: Jan, 2004


2 hardcore releases
Posted - 2004/02/13 :  00:10:08  Show profile  Send a private message  Visit Shade0's homepage  Reply with quote
quote:
Originally posted by Simon:
quote:
Originally posted by radiokate:
i wanna use Java all I can use is turbo pascal and well thats just dog shyte




Well once you've mastered Pascal, you'll be able to program in a lot of other languages, as the theories are practically all the same, it's just done slightly different.



___________________________________________________________


"Hush little baby, don’t say a word
And never mind that noise you heard
It’s just the beast under your bed,
In your closet, in your head"




i mastered pascal at a-level, finished a degree course with java and thats as well as most is basically all the same with a few differences

Chris.SHADE


__________________________________
Christian-J
---------------------------


Alert moderator Go to top of page
trapped_boi
Starting Member



Australia
7 posts
Joined: Feb, 2004
Posted - 2004/02/13 :  02:02:23  Show profile  Send a private message  Reply with quote
To add my 2c:

I'm doing a bachelor of software engineering (read: geek by day, raver by night), so i hope i can help.

A lot of people have written some good stuff above, my thoughts:

- translation error: error during translation (ie, compilation to some form of byte-code) - there is something in your code that doesn't make sense according to the language you're writing in. Eg, in Java, C or C++, you write:

i = i + 1

without the trailing ';'. (This example was given in someone else's post - thanx).

- linkage error: it sounds like we're talking about a C or C++ like language here. In this context, linking is the process of taking object (.o) files and combining several (linking them) into one executable file (.exe on a Windoze computer).

A linkage error occurs when file A tries to use a function ('method' in java) that it thinks is in file B, but in fact the function doesn't exist, or has a different signature. (Signature: number/type of parameters).

- execution error: error during program execution. these are things that can't be predicted by the compiler/linker. typical errors here are invalid pointer errors (in C), division by zero, accessing invalid memory, ... (+ many more)

Remember that exact phrases depend on the language/context in which you're working.

Hope that all helps haha...*geeky laugh*...*runs to find glowsticks*...

LaTa ~TiM



Alert moderator Go to top of page
radiokate
Advanced Member



United Kingdom
791 posts
Joined: Mar, 2002
Posted - 2004/02/13 :  18:40:27  Show profile  Send a private message  Visit radiokate's homepage  Reply with quote
nice one mate (thats just what i was hoping for - help from a computer geek!!) i have mastered turbo pascal and i still think its a pile of dog shit its bollox!! well if everything else is along em lines id prolly make a pretty nifty computer geek myself.

glad i aint goin on to do computing!!! my computing teachers a skitz shes got turrets or summin lmao very amusing.

Spine Tingling Sensations To Leave Your Mind Numb...

http://www.geocities.com/hardcore_lyrics

Kaitei Hoe


__________________________________
Spine Tingling Sensations To Leave Your Mind Numb...

http://www.geocities.com/hardcore_lyrics

Kaitei Hoe


Alert moderator Go to top of page



New PostPost Reply
Topic is 2 pages long: 1  2
 Printer friendly
  Verified artist
   Donating member How to donate

It took 0.52 ninja's to process this page!

HappyHardcore.com

    

1999 - 2025 HappyHardcore.com
audio: PRS for music. Build: 3.1.73.1

Go to top of page