Skip to content
Advertisement

What is Pure Java [closed]

I was invited to interview for Pure Java Developer

Please help me to understand what is Pure Java.

Can’t find any information about it.

Advertisement

Answer

Pure Java code is code that “conforms to Java’s ideal of universal portability”

It means code that does not rely on native features.

An aspect of Java is to be portable across different operating systems (write once, run anywhere). Writing code that can only be used on specific operating systems contradicts this.

Simply by googling “Pure Java”, you can find resources on it, such as PDFs and other articles.

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement