Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

25
votes
8answers
27k views

What is SuppressWarnings (“unchecked”) in Java?

Sometime when looking through code, I see many methods specify an annotation: @SuppressWarnings("unchecked") What does this mean?
24
votes
5answers
40k views

Type safety: Unchecked cast

In my spring application context file, I have something like: <util:map id="someMap" map-class="java.util.HashMap" key-type="java.lang.String" value-type="java.lang.String"> <entry ...
15
votes
3answers
639 views

When is @uncheckedVariance needed in Scala, and why is it used in GenericTraversableTemplate?

@uncheckedVariance can be used to bridge the gap between Scala's declaration site variance annotations and Java's invariant generics. scala> import java.util.Comparator import ...
11
votes
4answers
962 views

Suppressing Java unchecked warnings in JSP files

I have a legacy webapp which uses jstl and Struts 1 tags. When I pre-compile the JSP files with Java 5/6, the jstl and Struts 1 tags throw warnings about "unchecked or unsafe operations". For example, ...
8
votes
2answers
136 views

Weird result from unchecked(), possible compiler bug?

The following snippet evaluates to zero: int result = unchecked((int)double.MaxValue); Whereas, if you do this: double x = double.MaxValue int result = (int)x; The result is (would you even ...
8
votes
6answers
10k views

How to catch check/uncheck event of <input type=“checkbox” /> with jQuery?

The title should be clear
8
votes
6answers
3k views

Best way to create an empty map in java

I need to create an empty map. if (fileParameters == null) fileParameters = (HashMap<String, String>) Collections.EMPTY_MAP; The problem is that the above code produces this warning: ...
5
votes
2answers
68 views

do checked exceptions happen at run-time?

I am confused with the naming of runtime exception of java. Those checked exceptions, like SQLexception, also happen during the execution of a program. Why only those unchecked ones called runtime ...
5
votes
3answers
872 views

Scala pattern matching confusion with Option[Any]

I have the following Scala code. import scala.actors.Actor object Alice extends Actor { this.start def act{ loop{ react { case "Hello" => sender ! "Hi" case i:Int ...
5
votes
1answer
651 views

Fastest way to do an unchecked integer addition in VB.Net?

I have a project where I want to have checked arithmetic by default, except for one performance sensitive spot. Unfortunately, VB.Net doesn't have an 'unchecked' block. Ideally the framework would ...
5
votes
2answers
154 views

How to do this without unchecked?

a few months ago I wrote this code because it was the only way I could think to do it(while learning C#), well. How would you do it? Is unchecked the proper way of doing this? unchecked //FromArgb ...
4
votes
3answers
73 views

Recursive generics

Is there a way to make this method properly generic and do away with the warnings? /** * <p>Sort a collection by a certain "value" in its entries. This value is retrieved using * the given ...
4
votes
4answers
136 views

Optimize C# Code Fragment

I'm profiling some C# code. The method below is one of the most expensive ones. For the purpose of this question, assume that micro-optimization is the right thing to do. Is there an approach to ...
4
votes
3answers
107 views

java generics, unchecked warnings

here is part of tutorial in oracle page : Consider the following example: List l = new ArrayList<Number>(); List<String> ls = l; // unchecked warning l.add(0, new Integer(42)); // ...
4
votes
5answers
236 views

Checked vs. Unchecked Exceptions in Service Layer

I work on a project with a legacy service layer that returns null in many places if a requested record does not exist, or cannot be accessed due to the caller not being authorized. I am talking about ...
4
votes
5answers
357 views

What is the difference between checked and unchecked?

What is the difference between checked(a + b) and unchecked(a + b) ?
4
votes
1answer
174 views

How do I make a checkbox in jQuery lock a existing sliding window from moving and then unlock it by unchecking the box?

I`m very new to jQuery but am starting to get the hang of it. My Question is: How do I make a checkbox in jQuery lock a existing sliding window function from moving and then unlock it by unchecking ...
3
votes
3answers
103 views

Does using unchecked context hurt performance or portability in C#?

I want to implement a fast hash function that will use int datatype and rely on integer overflow. MSDN says that in order to guarantee that overflows don't trigger exceptions I have to use unchecked ...
3
votes
6answers
122 views

Multiplication issue with Visual Studio debugger for C#

If I enter 174 * 256 * 256 * 256 into the watch window in the C# debugger, the result is -1375731712. I assume it has something to do with 256, but I'd appreciate a little guidance. Thanks!!
3
votes
6answers
413 views

Java unchecked/checked exception clarification

I've been reading about unchecked versus checked questions, none of the online resources have been truly clear about the difference and when to use both. From what I understand, both of them get ...
3
votes
1answer
161 views

Name for a specific raw type/unchecked cast combo in Java generics usage

Effective Java 2nd Edition says that we should not use raw types in new code, and we must also try to eliminate all unchecked casts warnings, and to prove and document its safety if we choose to ...
3
votes
5answers
137 views

I can't find the cause of an “unchecked or unsafe operations” warning in Java

as per the title I am struggling to find the cause of an "unchecked or unsafe operations" warning in some code. If I have the following code, it compiles without any warnings: public void test() { ...
3
votes
3answers
350 views

How can i remove an unckecked cast warning in java?

i have this piece of code: import java.net.MalformedURLException; import java.rmi.Naming; import java.rmi.NotBoundException; import java.rmi.Remote; import java.rmi.RemoteException; public class ...
3
votes
7answers
2k views

Java Collections.sort - help me remove the unchecked warning

List<Question> questions = new ArrayList<Question>(); questions.addAll(getAllQuestions()); //returns a set of Questions Collections.sort(questions, new BeanComparator("questionId")); ...
2
votes
3answers
177 views

unchecked block doesn't work with BigInteger?

Just noticed that the unchecked context doesn't work when working with a BigInteger, for instance: unchecked { // no exception, long1 assigned to -1 as expected var long1 = ...
2
votes
3answers
156 views

Java: unchecked call to compareTo(T)

1 class test { 2 public static int compare0(Comparable x, Comparable y) { 3 return x.compareTo(y); 4 } 5 public static int compare1(Object x, Object y) { 6 ...
2
votes
3answers
187 views

How do I rewrite the following method without unchecked warnings?

private <K> Map<K, Object> createMap(final Class<K> keyClass) { final boolean isEnum = keyClass.isEnum(); if(isEnum) { // The following two lines throw ...
2
votes
2answers
128 views

Get rid of warnings in List<GenericClass<T>>.toArray()

Another one of those how do I do toArray() with no warnings questions, but it's different from most of the ones posted here. How do I rewrite the method implementation (without changing the method ...
2
votes
3answers
854 views

How to implement generic type-safe deep cloning in a Java class hierarchy?

I have a base class, say Base which specifies the abstract method deepCopy, and a myriad of subclasses, say A, B, C, ... Z. How can I define deepCopy so that its signature is public X deepCopy() for ...
1
vote
4answers
48 views

Unchecked conversion warning

Following is my interface definition interface IStorage { <T extends ICommon> Collection<T> find(String name, boolean isExact); } And this is the implementation Storage implements ...
1
vote
2answers
69 views

Arraylist in Arraylist, unchecked error. Java

Im trying to put arraylists into an arraylist. Adding data to the new arrays, then print them in order. Im only getting errors. Is this the right way to create an arraylist in another arraylist ...
1
vote
2answers
245 views

How do I compile with -Xlint:unchecked?

I'm getting a message when I compile my code: Note: H:\Project2\MyGui2.java uses unchecked or unsafe operations. Note: Recompile with -Xlint:unchecked for details. How do I recompile with ...
1
vote
3answers
69 views

Why should I explicitly surround with “unchecked”?

Is there anyone able to explain me this strange behavior? int i = 0x1234; byte b1 = (byte)i; byte b2 = (byte)0x1234; //error: const value '4660' can't convert to byte (use ...
1
vote
3answers
86 views

Java unchecked operation cast to generic

I am wondering why the following issues a warning about an unsafe / unchecked operation: Map<String, ProxySession> sessionMap = (Map<String, ProxySession>) ...
1
vote
0answers
457 views

Eclipse Helios - @SuppressWarnings “rawtypes” doesn't work while “unchecked” does

I have a problem with the @SuppressWarnings annotation when handling raw-types warnings in Eclipse Helios. According to this post and the docs, the annotation parameter rawtypes should be used ...
1
vote
2answers
474 views

How to explicitly set checkbox unchecked

I have a xhtml page with transitional doctype having a checkbox that I want to be unchecked after loading. No JavaScript! In Firefox 3.5 (for instance, there may be other browsers) user can check ...
1
vote
3answers
680 views

Java “unchecked call to compareTo(T) as a member of the raw type java.lang.Comparable”

I'm trying to implement a sorted list as a simple excercise in Java. To make it generic I have an "add(Comparable obj)" so I can use it with any class that implements the Comparable interface. But, ...
1
vote
3answers
265 views

Unchecked cast in Java when casting to list of superclasses

In my Java program, I need to cast an object of type List<? extends SomeBaseClass> to List<SomeBaseClass>. If I cast it directly the compiler complains (shows a warning) that there is an ...
1
vote
5answers
2k views

Type safety: Unchecked cast from Object

I try to cast an object to my Action class, but it results in a warning: Type safety: Unchecked cast from Object to Action<ClientInterface> Action<ClientInterface> action = null; try { ...
1
vote
1answer
141 views

C# - What could cause overflow checking here?

I am accustomed to C# not performing overflow checks, as the language spec states (ยง7.5.12): For non-constant expressions (expressions that are evaluated at run-time) that are not enclosed by any ...
1
vote
5answers
1k views

How to catch a java unchecked/runtime exception (specifically SecurityException)

I have java class with a method which gets an image from a website: private Image image; private int height; private int width; private String imageUri; public Image getImage() { if (image == null) ...
0
votes
0answers
15 views

No unchecked warnings in NetBeans 7.1 Java EE

I use Java EE 6 with Java 7 and Glassfish 3.1.1. When I choose "clean and build" option in menu it works but it doesn't show warnings about unchecked operations. How to enable it? And additional ...
0
votes
3answers
60 views

How to check one radio button out of two in vb.net

Suppose I have 2 radio buttons r1 and r2, both the radio buttons ask for your gender, you can be a man or woman. So what I want: if user checks r1 but then realizes that she is a woman, she then ...
0
votes
0answers
29 views

checkbox element become checked after deleting other element fo the list

I have a simple checkbox list and a button to delete the items listed. After checking and deleting some elements, the elements still on the list are checked instead to be unchecked (not all but those ...
0
votes
2answers
54 views

Unchecked cast: Is there a way to avoid it in this case?

I have a situation that is causing an unchecked cast warning. I know I can use supress warnings, but my instinct tell me there is a way to avoid it by changing how I've coded this snippet. I can't, ...
0
votes
2answers
168 views

Checkbox checked value passed through several php pages

So I am trying to create a checkbox that I can pass it's value or have it's value stored in a cookie, so I can use it across several different pages. Currently I have this: <input type="checkbox" ...
0
votes
1answer
125 views

JQuery change radio buttons checked state when each is selected

I have three radio buttons in a search group: Zip, City and County. How can I toggle the checked states of all radio buttons in the group when one of them is clicked? <input id="SC5_zipR" ...
0
votes
1answer
42 views

Hibernate Unchecked exception not rollbacked

I think i don't understand something with unchecked exception. I'm using spring/hibernate. In a transaction, i'm catching a NullPointerException (so an unchecked), but at then end my transaction is ...
0
votes
3answers
275 views

Uncheck checkbox 1 when checkbox 2 is checked

I have a pretty simple question - I'm thinking - but I cannot solve it myself. I have two checkboxes: One with value Yes, the other with value No. I need a script of some sort to help me uncheck one ...
0
votes
3answers
133 views

Unchcked Cast Generics

In my code I have private E[] arrCirc; and in my constructor I have arrCirc = (E[]) new Object[capacity]; but when I try to compile it I get an warning: [unchecked] unchecked cast found : ...

1 2