Tagged Questions
javac is the primary Java compiler, included in the Java Development Kit (JDK) from Sun Microsystems (now Oracle), and also in versions from other vendors.
49
votes
10answers
1k views
Is this valid Java?
Is this valid Java?
import java.util.Arrays;
import java.util.List;
class TestWillThatCompile {
public static String f(List<String> list) {
System.out.println("strings");
...
23
votes
4answers
963 views
What is the difference between javac and the Eclipse compiler?
I asked this in a comment, but figured it's a separate question:
Is Eclipse's compiler just a wrapper around the same compiler core that the javac program is wrapped around, or is it a separate ...
20
votes
8answers
6k views
In which language are the Java compiler, JVM and Java written?
In which languages are the Java compiler (javac), the virtual machine (JVM) and the java starter written?
19
votes
4answers
4k views
Is there a performance difference between Javac debug on and off?
If I switch on the generating of debug info with Javac then the class files are 20-25% larger. Has this any performance effects on running the Java program? If yes on which conditions and how many. I ...
18
votes
3answers
813 views
Reference is ambiguous with generics
I'm having quite a tricky case here with generics and method overloading. Check out this example class:
public class Test {
public <T> void setValue(Parameter<T> parameter, T value) {
...
18
votes
1answer
2k views
Javac: Treat warnings as errors
I have an Ant file that compiles my program. I want the javac task to fail if any warning was reported by the compiler. Any clue on how to do that?
16
votes
2answers
300 views
Java casting: is the compiler wrong, or is the language spec wrong, or am I wrong?
I have been reading the Java Language Spec, 3rd edition, and have found what I think is a discrepancy between the spec and the javac compiler implementation. The same discrepancies exist in the ...
15
votes
7answers
2k views
How to intentionally cause a custom java compiler warning message?
I'm about to commit an ugly temporary hack in order to work around a blocking issue while we wait for an external resource to be fixed. Aside from marking it with a big scary comment and a bunch of ...
12
votes
3answers
3k views
Is there a way to improve multicore / multiprocessor performance of the Java compiler?
My coworker noticed that when javac is compiling it only utilizes a single core. Is there anything like the -j command with the gcc for Java that will allow us to distribute the compiler workload ...
10
votes
6answers
845 views
is it possible to disable javac's inlining of static final variables?
The Java static compiler (javac) inlines some static final variables and brings the values directly to the constant pool. Consider the following example. Class A defines some constants (public static ...
10
votes
2answers
5k views
Setup Java 6 annotation processing configuration for eclipse compiler with maven
What's the best way to setup the eclipse project compiler configuration for Java 6 annotation processors?
My solution is to setup the org.eclipse.jdt.apt.core.prefs and factorypath files manually. ...
9
votes
8answers
1k views
Java generics code compiles with javac, fails with Eclipse Helios
I have the following test class that uses generics to overload a method. It works when compiled with javac and fails to compile in Eclipse Helios. My java version is 1.6.0_21.
All the articles I read ...
9
votes
5answers
1k views
Multiple .class files generated for a class?
Out of curiosity, why are sometimes multiple Java .class files generated for a class after compilation? For example, my application has six classes. For one class, a total of 10 .class files has been ...
8
votes
3answers
2k views
javac complains: cannot find symbol on enum implementing interface
I have three java types as defined below:
Main.java:
import java.util.Arrays;
import java.util.List;
public class Main
{
private Object callFunction()
{
OperationDefinitions func = ...
8
votes
3answers
13k views
How do I set -Dfile.encoding within ant's build.xml?
I've got java source files with iso-8859-1 encoding. When I run ant, I get "warning: unmappable character for encoding UTF-8". I can avoid this if I run ant -Dfile.encoding=iso-8859-1 or add ...
7
votes
2answers
121 views
Illegal forward reference error for static final fields
I'm trying to compile a Java class which javac rejects with an illegal forward reference error, where the offending reference is lexically after the referenced field. The following class is stripped ...
7
votes
2answers
363 views
Why is Java 6 compiled class size larger than Java 5?
We are noticing that when we compile our classes on Java 6, they are consistently larger than Java 5.
I understand that there has not been a change to the byte code to date, so I assume the Java 6 ...
7
votes
4answers
336 views
javac strange syntax - error illegal start of expression
I encountered a strange error, which I believe is a bug.
Here is a minimal case, please do not comment on the usefulness of the code :)
class Foo {
static public <X> int bar() { return 42; ...
7
votes
4answers
794 views
Java compiler platform file encoding problem
This is my first post to stack overflow. I've been doing Java since 1998, so I'm no beginner. Recently I encountered a file character encoding issue that I cannot remember ever having faced. It's ...
7
votes
4answers
450 views
Compilation hangs for a class with field double d = 2.2250738585072012e-308
I have come across an interesting situation. A coworker committed some changes, which would not compile on my machine neither from the IDE (Eclipse) nor from a command line (Maven). The problem ...
7
votes
4answers
2k views
javac error: inconvertible types with generics?
There are several other SO questions talking about generics compiling OK w/ Eclipse's compiler but not javac (this and this and this) -- however this looks like a slightly different one.
I have an ...
7
votes
7answers
4k views
JDK/JRE/JVM/Java SDK | What do they all mean? Sometimes you can develop with JRE and sometimes you need JDK?
To tell the truth, I am quite confused on all these terms (JDK/JRE/Java SDK). I am not sure what each one does.
When I first started doing simple java examples in eclipse, I am pretty sure I only had ...
7
votes
4answers
6k views
How can I suppress javac warnings about deprecated api?
When I compile, javac outputs:
Note: Some input files use or override a deprecated API.
Note: Recompile with -Xlint:deprecation for details.`
I wish to suppress this warning. Trying -Xlint:none ...
7
votes
8answers
2k views
Why is javac 1.5 running so slowly compared with the Eclipse compiler?
I have a Java Maven project with about 800 source files (some generated by javacc/JTB) which is taking a good 25 minutes to compile with javac.
When I changed my pom.xml over to use the Eclipse ...
7
votes
5answers
819 views
Static context in enum definition
The syntax sugar provided by Java's enum facility can sometimes be a little confusing. Consider this example, which does not compile:
public enum TestEnum {
FOO("foo") {
public void ...
7
votes
3answers
1k views
javac.exe AST programmatic access example
Is it possible to access the Abstract Syntax Tree(AST) inside the javac.exe programmatically? Could you provide an example?
6
votes
1answer
54 views
How to make JavaC keep good class files when some input files are failing?
When one compiles two independent java files with one javac call their class files are either
both output to the output folder, on successful compile, or
neither class file is output, if one source ...
6
votes
2answers
96 views
Why does implementing this generic interface create an ambiguous reference?
Let's say I have the following:
public interface Filter<E> {
public boolean accept(E obj);
}
and
import java.io.File;
import java.io.FilenameFilter;
public abstract class ...
6
votes
6answers
2k views
Compiling java files in all subfolders?
What's the best way to compile all java files in all subfolders ?
I'm on unix
thanks
6
votes
4answers
85 views
Are subcontexts in Java separate rows on the stack?
In Java this is the case:
public void method() {
if (condition) {
Object x = ....;
}
System.out.println(x); // Error: x unavailable
}
What I'm wondering is this: Is the fact that x is ...
6
votes
2answers
550 views
Specifying the Eclipse compiler completely from _within_ build.xml
As an experiment we want to build our products using the Eclipse java compiler (ecj-3.5.jar downloaded from eclipse.org) on the runtime version of Java 6 instead of the JDK, and as I understand it, it ...
6
votes
2answers
6k views
Maven2 compiler custom execution source directory and target directory
I want to run the maven compiler plugin in a different phase and with different sourceDirectories and destinationDirectories such that code from directories other than src/main/java and src/test/java ...
6
votes
4answers
684 views
Do you use (or define) non standard annotations, and for what reason. How about recursive annotations?
The question tells it all.
For the experts, is there a reason the SUN java 5 compiler accepts recursive annotations (contrary to the langspec), while the later compilers do not? I mean, what could be ...
5
votes
2answers
95 views
Java Generic type inference derived from method return type
public class TestCase {
public static String compiles() {
return getAction();
}
/*
public static String doesntCompile1() {
return (String) getAction();
}
...
5
votes
1answer
71 views
How can I run java code that has been pasted into my program
I'm making a simulator for Time Complexity. The purpose is that Students can choose which algorithms they want to compare.
But I want to make it possible to compare algorithms they've written ...
5
votes
2answers
98 views
Where can I find a list of all the possible Java compile time errors?
So I'm trying to write a Java program that attempts to compile another Java project, and using any potential errors that come out of the compiler(in this case Javac) the program would attempt to ...
5
votes
4answers
154 views
Covariant Return Type in Interface not compiling via Javac
I have the following structure:
public interface BarReturn {}
public interface FooReturn {}
public interface FooBarReturn extends FooReturn, BarReturn {}
public interface Foo {
FooReturn fooBar( ...
5
votes
1answer
150 views
How are anonymous classes compiled in Java?
I've heard that Java bytecode actually doesn't support any kind of unnamed classes. How does javac translate unnamned classes to named ones?
5
votes
3answers
4k views
Ant: passing compilerarg into javac
I have ant script that compiles:
<javac srcdir="${test.src.dir}" destdir="${test.dist.dir}">
...
<compilerarg value="-Xlint:unchecked" />
...
5
votes
6answers
217 views
compilation of java program
I have JRE 6 in my PC (Windows XP) but when I compile a program in the command prompt it shows javac is not recognised as internal or external command. Which software is needed to compile a Java ...
5
votes
3answers
2k views
javac - differences between classpath and sourcepath options
I read the Sun documentation and a lot of Q/A on SO but I'm still a little bit confuse regarding the differences between the javac options -cp and -sourcepath.
Let say I have this directory ...
5
votes
2answers
4k views
Java: specific enums and generic Enum<?> parameters
I want to pass any enum value to method in utility class and get another enum value of same enum type. Something like this:
public class XMLUtils {
public static Enum<?> ...
5
votes
5answers
899 views
How do I find out what jar files are actually used when compiling a java project
I'm currently passing a very large classpath to javac to compile a java project.
I know that a number of those jar files aren't needed.
Is there a simple way of finding out which files aren't ...
5
votes
8answers
1k views
Disabling compile-time dependency checking when compiling Java classes
Consider the following two Java classes:
a.) class Test { void foo(Object foobar) { } }
b.) class Test { void foo(pkg.not.in.classpath.FooBar foobar) { } }
Furthermore, assume that ...
5
votes
2answers
7k views
Setting the target version of Java in ant javac
I need to compile a jar file using ant (1.7.0) to run under a specific version of Java (1.5). I currently have Java 1.6 on my machine. I have tried setting:
<target name="compile">
<javac ...
5
votes
6answers
12k views
How do I make the JDK the default JRE?
I use Eclipse with ant scripts, and Eclipse works well with the default JRE installation on Windows XP.
The annoyance comes when I want to run ant scripts compiling with the javac-tag, where it fails ...
5
votes
6answers
1k views
Preserving parameter/argument names in compiled java classes
When I compile something like this:
public class MyClass
{
void myMethod(String name, String options, String query, String comment)
{
...
}
}
and compile this to a class file, it ...
5
votes
3answers
604 views
Bug in eclipse compiler or javac?
Who is right? Eclipse or javac?
--------------- c/v/A.java ---------------
package c.v;
public class A<T> {
}
--------------- c/v/B.java ---------------
package c.v;
public class B extends ...
5
votes
3answers
406 views
Javac flag to disallow raw types?
Is there any Java compiler flag that one can pass to tell the compiler to disallow the use of raw types? That is, for any generic class, let the compiler force that the parameterized version be used, ...
4
votes
1answer
92 views
javac compiler discrepancies
Update: this seems to be Eclipse-related, rather than Hudson-related so I updated the question accordingly.
I'm getting some compiler errors when running Maven on the command line, but all developers ...