Hot answers tagged java
20
If a file is called Math.java (which it seems to be), it must contain a class called Math. Take a look at this post. Java is looking for a file called ./Math.java, which doesn't contain seem to contain a class called Math in your case.
If you're actually trying to use the standard Java Math package, you need to either get rid of anything named Math.java in ...
14
Delete the file Math.java that you have probably inadvertently left in your source code directory. This file is preventing the normal usage of JDK's java.lang.Math class.
You should also note that defining classes in the default package is bad practice and will cause various issues for you along the way. Put your source code into a named package.
13
Sure - it's just a matter of understanding that none of 0.6, 0.6f, 0.7 and 0.7f are those exact values. They're the closest representable approximations in the appropriate type. The exact values which are stored for those 4 values are:
0.6f => 0.60000002384185791015625
0.6 => 0.59999999999999997779553950749686919152736663818359375
0.7f => ...
10
The expression "abc" + "d" is a constant expression, so the concatenation is performed at compile-time, leading to code equivalent to:
String s1 = "abc";
String s2 = "abcd";
String s3 = "abcd";
String s4 = s1 + "d";
The expression s1 + "d" is not a constant expression, and is therefore performed at execution time, creating a new string object. Therefore ...
8
You can pass an anonymous array :
setObject(new Object[] { new Object() });
Note that the syntax { new Object() } just works when initializing the array on its declaration. For example:
Object[] arr = { new Object() };
This doesn't work after declaring the array:
Object[] arr;
//uncomment below line and you'll get a compiler error
//arr = { new ...
8
I would use a direct ByteBuffer. The memory this uses is not copied around and is only in one place for the life of the ByteBuffer. BTW don't use clear() as this just resets the position. You can overwrite it with
bb.clear();
while(bb.remaining() >= 8) bb.putLong(0);
while(bb.remaining() > 0) bb.put((byte) 0);
Is the stack any more secure ...
7
You're not checking for primes. You're testing all 10,000 combinations of two numbers from 1 to 100 to see if the second divides the first evenly.
But it's likely doing that correctly.
Pseudocode for what you want to do:
for each number n from 2:100
for each divisor d from 2:n-1
test to see if d divided n evenly
end for
if no values ...
7
You can use a List implementation with an appropriate constructor:
List<String> setList = new ArrayList<String>(set);
The same thing works for a LinkedList too:
List<String> setList = new LinkedList<String>(set);
For more implementations you might have a look at the Interface List<E> documentation, especially the All Known ...
6
It sounds like you should have an Item class, which has an abbreviation, name, and optional image. Then you can start with a list of items and build a Map<String, Item> very easily.
Whenever you find yourself wanting to build more structure into a collection, consider encapsulating related elements. For example, if you have two lists which are always ...
6
Try this code. It uses logarithm to the base of 10:
public static int length(int integer) {
if(integer==0) {
return 1;
} else if(integer<0) {
return ((int)Math.log10(Math.abs(integer)))+1;
} else {
return ((int)Math.log10(integer))+1;
}
}
6
If you have to do this, the only way would be the getClass().equals(Foo.class) option you've suggested.
However, the goal of OO design is to allow you to treat any Foo in the same fashion. Whether or not the instance is a subclass should be irrelevant in a normal program.
6
You can use MessageFormat:
MessageFormat messageFormat = new MessageFormat("customers address is {0}, phone number is {1}, please check them.");
Object[] args = {"dortmund", "5555"};
String message = messageFormat.format(args);
6
It seems to be more of an answer than a comment so I'll post it
The documentation says:
It follows immediately from the contract for compare that the quotient is an equivalence relation on S, and that the imposed ordering is a total order on S."
So no, a Comparator requires a total ordering. If you implement this with a partial ordering you're ...
6
The reason why is you are storing "theNumber" as a String and then trying to use integral comparisons on it. It is not an integer, and thus an error is occuring.
Instead, the following would work:
int theNumber;
theNumber = someInput.nextInt();
Now, you are storing theNumber as an Integer and you are using the scanner to read the next integer in and ...
6
Let's break it down, using parentheses to make the logical groupings explicit:
return ((access != IACL.RS_NOACCESS) && (documentVersion >= 0));
So, the method returns a boolean value, the result of the comparisons being performed. The entire expression is evaluated before the expression's value is returned.
Let's pretend that access is equal ...
6
The second you have lost its reference, but it looks more concise.
Yes, it is more concise. You're doing less with the object - importantly, you're not doing things you should be doing. Taking a shortcut will often produce less code, but by leaving file handles open pending the finalizer closing things, you'll find that you'll get exceptions which are ...
5
You are correct, contains uses equals. However, an instance of a class is not equal to an object of the class, i.e. Orange.class.equals(new Orange()) is false.
You will need a custom method to check for a list containing an instance of a class.
public <E> boolean containsInstance(List<E> list, Class<? extends E> clazz) {
for (E e : ...
5
You have a misunderstanding of what you should be doing in inheritance. extends is a reserved word that was wisely chosen. The point of B extending A is to say that B is a subset of A with additional attributes. You're not supposed to redefine x in B; A should be handling x.
With respect to your problem in particular, you confused yourself by the ...
5
That might be because the autowiring is done by name, not type. If I setup my bean using xml like this:
<bean id="foo1" class="Foo"/>
<bean id="foo2" class="Bar"/>
And attempt to autowire by type:
@Autowired private Foo aFoo;
I get
org.springframework.beans.factory.NoSuchBeanDefinitionException: No unique bean of type [Foo]
5
Enums in java do not support inheritence from classes because each enum is actually a simple class that extends Enum. Since multiple inheritance is not supported you cannot create base class for 2 enums.
You can either stop using enums for this purpose, i.e. switch to regular classes or use delegation to create File, i.e. utility that accepts enum member ...
5
Try this for Set,
Set<String> set = new HashSet<String>();
set.add("1");
set.add("2");
set.add("3");
set.add("4");
List<String> setList=new ArrayList<String>(set);
Try this for Map,
Map<String, String> map = new HashMap<String, String>();
map.put("key1", "1");
...
5
I seems rather questionable design to have a mutual dependency between the food and its storage. A unidirectional depedency would simplify the generics greatly:
class Food { ... }
class FoodStorage<F extends Food> {
void setFood(F f);
}
But if you insist on the mutual dependency, you can do it without a cast as follows:
abstract class Food<F ...
5
You can try creating regex from string that contains special characters and escape symbols using Pattern.quote. Try this:
String special = "!@#$%^&*()_";
String pattern = ".*[" + Pattern.quote(special) + "].*";
regFrom.getPassword().matches(pattern);
5
The problem is that, when you have incomparable elements, you need to fall back to something cleverer than comparing hash codes. For example, given a partial order {a < b, c < d}, the hash codes could satisfy h(d) < h(b) < h(c) < h(a), which means that a < b < c < d < a (bold denotes tie broken by hash code), which will cause ...
5
What will be cleaner and easier to maintain?
Probably JavaFX - the API is much more consistent across components. However, this depends much more on how the code is written rather than what library is used to write it.
And what will be faster to build from scratch?
Highly dependent on what you're building. Swing has more components around for it ...
5
No, the language specification mentions no such easy way.
You can always pass Objects and perform type checks yourself, but that's a wrong approach.
Java does not allow named parameters (ways around it in link).
5
It is generally considered bad practice to rely on ordinal since it is based on the order of the enum constants. A better solution would be to pass information to each instance. Just write a constructor and method like this:
public enum Number {
ZERO(0), ONE(1), TWO(2);
private int value;
private Number(int value) {
this.value = value;
...
5
The whole expression to the right of return evaluates to a boolean value, which is what's returned.
return access != IACL.RS_NOACCESS && documentVersion >= 0;
Is equivalent to:
boolean result = (access != IACL.RS_NOACCESS);
result = result && (documentVersion >= 0);
return result;
5
There is some other errors in your program.
First, you shoud add a type to your ArrayList. Since you're trying to add int, double and String, I recommend you to create an ArrayList<Object> lInvoice = new ArrayList<Object>() ;
Then just loop with your iterator :
ListIterator<Object> ltr = lInvoice.listIterator();
...
4
Problem is here
iconCards[k][l++] = new ImageIcon(card);
l++ is the post increment operator on l. Therefore given l = 0 and k = 0, you would access
iconCards[0][0]
and then l would go to 1. You might want to use the pre increment ++l version.
So your l (as an index to iconCards) only goes up to value 2 (for images/XH.gif), not 3 (for ...
Only top voted, non community-wiki answers of a minimum length are eligible






