answersLogoWhite

0

There is no such thing as a Java "linker". There is, however, the concept of a classloader which - given an array of java byte codes from "somewhere" - can create an internal representation of a Class which can then be used with new etc...................

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

What is linker error?

An error detected (or perhaps caused) by the linker. Examples: unresolved symbol, duplicated symbol.


What is object linker?

In computer science, a linker or link editor is a program that takes one or more objects generated by a compiler and combines them into a single executable program.http://en.wikipedia.org/wiki/LinkerThis is a response to the question, "What is object linker?". The appropriate question would have been, "What is a linker or link editor in the field of Computer Science and Software Engineering?". Note that a linker is called a loader when it refers to a run-time process. Linkers refer to compile-time processes.


What is a scatter file in c or c plus plus programming?

Scatter File is a linker script file used by RVCT/Keil for ARM processors. It is used by arm linker.


Functions of a linker in system software?

A linker takes the object files produced by the compiler and links them together to form a single machine code executable.


What is a short note on linking error in c plus plus?

A linking error usually denotes some inconsistency between a function's declaration and its definition, typically meaning there is no matching definition for the declared function (an undefined function). Normally this is only a problem if the function is actually called since unused functions are of no concern to the linker, whether defined or not. Linker errors may not relate to errors within your code. An undefined function could simply be the result of not providing the linker with the full path to a function that is implemented in a library. The linker also needs access to all the object files generated by the compiler. If the linker options are correct then the problem is most likely that you've failed to define a declared function.