Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

71
votes
6answers
59k views

How to convert an NSString into an NSNumber

How can I convert an NSString containing a number of any primitive data type (e.g. int, float, char, unsigned int, etc.)? The problem is, I don't know which number type the string will contains at ...
29
votes
13answers
2k views

Why do people still use primitive types in Java?

Since Java 5, we've had boxing/unboxing of primitive types so that int is wrapped to be java.lang.Integer, and so and and so forth. I see a lot of new Java projects lately (that definitely require a ...
23
votes
3answers
26k views

What's the difference between NSNumber and NSInteger?

What's the difference between NSNumber and NSInteger? Are there more primitives like these that I should know about/use? Is there one for floats?
13
votes
8answers
20k views

How to convert an ArrayList containing Integers to primitive int array?

I'm trying to convert an ArrayList containing Integer objects to primitive int[] with the following piece of code, but it is throwing compile time error. Is it possible to convert in Java? ...
13
votes
5answers
2k views

Do STL maps initialize primitive types on insert?

I have a std::map like this: map<wstring,int> Scores; It stores names of players and scores. When someone gets a score I would simply do: Scores[wstrPlayerName]++; When there is no element ...
12
votes
10answers
227 views

Why in java is there a wrapper for every primitive type

The Number subclasses wrap primitive numeric types (Byte, Integer, Double, Float, Long, and Short). What purpose do they serve?
12
votes
3answers
3k views

How To Test if Type is Primitive

I have a block of code that serializes a type into a Html tag. Type t = typeof(T); // I pass <T> in as a paramter, where myObj is of type T tagBuilder.Attributes.Add("class", t.Name); foreach ...
12
votes
1answer
257 views

What are the limitations of primitive character types in D?

I am currently exploring the specification of the Digital Mars D language, and am having a little trouble understanding the complete nature of the primitive character types. The book Learn to Tango ...
11
votes
3answers
190 views

System.Int32 contains… another System.Int32

I thought about writing a language for the sake of writing a language, and now that I'm done with the parser and the AST, I have to do something about the library. Specifically, basic types. I'm ...
10
votes
4answers
136 views

Type-proofing primitive .NET value types via custom structs: Is it worth the effort?

I'm toying with the idea of making primitive .NET value types more type-safe and more "self-documenting" by wrapping them in custom structs. However, I'm wondering if it's actually ever worth the ...
10
votes
6answers
822 views

Why java has “String” type and not “string”?

Wrapper class are just fine and their purpose is also well understood. But why do we omit the primitive type ?
10
votes
7answers
6k views

Is it possible to write swap method in Java?

Here is the question: write a method that swaps two variables. These two variables should be primitives. It doesn't need to be generic e.g. two int variables. Is there a way?!
9
votes
2answers
876 views

How can I convert a LazySeq of Characters to a String in Clojure?

Let's say I have a LazySeq of java.lang.Character like (\b \ \! \/ \b \ \% \1 \9 \/ \. \i \% \$ \i \space \^@) How can I convert this to a String? I've tried the obvious (String. my-char-seq) ...
9
votes
9answers
5k views

Arithmetic operator overloading for a generic class in C#

Given a generic class definition like public class ConstrainedNumber<T>: IEquatable<ConstrainedNumber<T>>, IEquatable<T>, IComparable<ConstrainedNumber<T>>, ...
8
votes
3answers
130 views

Widening and Boxing Java primitives

Widening and Boxing Java primitives. I know it is not possible to widen a wrapper class from one to another as they are not from the same inheritence tree. Why though is it not possible to widen a ...
8
votes
5answers
1k views

Why do primitive types in C# have their own operations?

A few days ago, I decided to start learning C#. So, I got a book and started reading and practicing with code. I was surprised when I saw that string in C# is considered a primitive type. But I was ...
8
votes
4answers
2k views

Compare two arrays of primitives in Java?

I know about Arrays.deepEquals(Object[], Object[]) but this doesn't work for primitive types (due limitations of arrays and autoboxing, see this related post). With that in mind, is this the most ...
8
votes
5answers
4k views

Converting an array of objects to an array of their primitive types

If you have an array of java objects which have a primitive type (for example Byte, Integer, Char, etc). Is there a neat way I can convert it into an array of the primitive type? In particular can ...
7
votes
5answers
2k views

how do I initialize a float to its max/min value?

How do I hard code an absolute maximum or minimum value for a float or double? I want to search out the max/min of an array by simply iterating through and catching the largest. There are also ...
6
votes
3answers
512 views

Java: Why i can't cast int to Long

All numbers in java are supposed to be of int type. The following line is legal in Java>1.5 Short s = 1; // Will compile to Short s = Short.valueOf((short)1) - thus you can't exceed short max value ...
6
votes
11answers
208 views

“Generic” solution for primitive array?

I have classes that for processing primitive array input: CharArrayExtractor for char[], ByteArrayExtractor for byte[], IntegerArrayExtractor for int[], ... public void CharArrayExtractor { ...
6
votes
4answers
535 views

Java Generics - <int> to <Integer>

In the way of learning Java Generics, I got stuck at a point. It was written "Java Generics works only with Objects and not the primitive types". e.g Gen<Integer> gen=new ...
6
votes
6answers
648 views

Why must local variables, including primitives, always be initialized in Java?

Why must local variables, including primitives, always be initialized in Java? Why is the same not applicable in the case of instance variables?
6
votes
9answers
363 views

.NET Multithreading - Do I need to synchronise access to a variable of primitive type?

The scenario I have a class with a bool Enabled property, that is used by a loop on another thread to see whether it should stop or not. The idea is that a different thread can set that property to ...
5
votes
2answers
115 views

Does this code produce Undefined Behavior or it is merely Unspecified Behavior?

Lets say that we have two compilation units as follows: // a.cpp extern int value2; int value1 = value2 + 10; // b.cpp extern int value1; int value2 = value1 + 10; When I tried it on VC2010, it ...
5
votes
3answers
120 views

Does <String> do anything?

List<String> works with or without but List<int> doesn't. I've always wondered about this.
5
votes
8answers
1k views

How do I pass a primitive data type by reference?

For example, how do I make an int passed to a function modifiable. Thanks in advance
5
votes
7answers
2k views

Is String a primitive type?

I am curious about the string and primitive types. Article like this says string is primitive type. However second article on MSDN does not list string as primitive type. However when I ran the code ...
5
votes
9answers
1k views

When to use primitive and when reference types in Java

In which case should you use primitive types(int) or reference types (Integer)? This question sparked my curiosity.
5
votes
7answers
4k views

When to use wrapper class and primitive type

When i should go for wrapper class over primitive types? Or On what circumstance i should choose between wrapper / Primitive types?
5
votes
6answers
228 views

How to temporarily replace one primitive type with another when compiling to different targets?

How to easily/quickly replace float's for doubles (for example) for compiling to two different targets using these two particular choices of primitive types? Discussion: I have a large amount of c# ...
5
votes
4answers
3k views

Java Vector or ArrayList for Primitives

Is there an expandable array class in the Java API equivalent to the Vector or ArrayList class that can be used with primitives (int, char, double, etc)? I need a quick, expandable array for ...
4
votes
3answers
57 views

Why casting direction is big to small in primitive types and small to big with objects?

In Java we need casting when converting double(big in memory size) to Integer (smaller in memory size) int x = (int) 4.3; But in case of objects if parent class is "Mammal"(small in memory size) ...
4
votes
2answers
295 views

ActionScript - Difference Between Primitive / Non-Primitive Objects for Memory Management?

my understanding is that primitive types (uint, string, Number, etc.) of a class do not need to be set to null for garbage collection. for example, i am not required to write this dispose() method in ...
4
votes
7answers
193 views

Why java numbers aren't iterable

I can't keep wondering why I can't write something like that: for (int i : 3) { System.out.println(i); } to print out: 0 1 2 I mean, 3 could be auto-boxed into an Integer, which could be ...
4
votes
5answers
332 views

Char into byte? (Java)

How come this happens: char a = '\uffff'; //Highest value that char can take - 65535 byte b = (byte)a; //Casting a 16-bit value into 8-bit data type...! Isn't data lost here? char c = (char)b; ...
4
votes
2answers
236 views

ABCL compilation and primitives

Does anyone know how (or if) you can use ABCL to compile Lisp code to .class files and create a main method so that the whole thing could be packaged into a .jar file and run? Also, does anyone know ...
4
votes
4answers
336 views

Why is Scala promoting List[Any] to List[Long]?

In the following code: def test(list: List[Any]): Unit = { list.foreach { v => v match { case r: AnyRef => println(r + ": " + r.getClass.getName) case d: Double => ...
4
votes
7answers
528 views

Uninitialized int vs Integer

I was just studying up on my Java in preparation for an exam and I ran into a sort of problem with uninitialized int/Integer values. class A { int x; Integer y; static int z; ...
4
votes
2answers
278 views

C# Generics to avoid code repetition?

I am fairly new to C# coming from Java, and I'm wondering if there's a simple way to avoid code repetition involving primitive types like this: private Boolean AtLeastOneBufferItemIsNonZero(int[] ...
4
votes
5answers
489 views

Converting a byte array to an array of primitive types with unknown type in C#

I have the following problem. I have an array of bytes that I want to convert intro an array of primitive types. But I don't know the type. (This is given as an array of types). As a result I need an ...
4
votes
3answers
433 views

Java primitive collections library

What is the best Java primitive collections library? (most memory and time efficient) I've found Trove and FastUtil to be the most used ones, but haven't found much comparison between them (or ...
4
votes
3answers
357 views

When to use primitives in Objective-C?

When should I use primitives in Objective-C instead of NSValue subclasses? This code is certainly cleaner (I think) than using NSNumber: float width = sliderOne.frame.size.width; float ...
4
votes
2answers
817 views

Calling Java vararg method from Scala with primitives

I have the following code in Java: public class JavaClass { public static void method( Object x ) { } public static void varargsMethod( Object... x ) { } } When I try and access ...
4
votes
11answers
392 views

Why is it that an int in C++ that isnt initialized (then used) doesn't return an error?

I am new to C++ (just starting). I come from a Java background and I was trying out the following piece of code that would sum the numbers between 1 and 10 (inclusive) and then print out the sum: /* ...
4
votes
6answers
492 views

Initializing Primitive Array to One Value

Is there a way to initialize an array of primitives, say a integer array, to 0? Without using a for loop? Looking for concise code that doesn't involve a for loop. :)
4
votes
3answers
383 views

Are pointers primitive types in C++?

I was wondering about the last constructor for std::string mentioned here. It says: template<class InputIterator> string (InputIterator begin, InputIterator end); If InputIterator is an ...
3
votes
3answers
68 views

Why exactly is this template function successfully compiling? [closed]

Possible Duplicate: Destructors of builtin types (int, char etc..) Template Function: template<typename T> void kill(T* type) { type->~T(); } Call: int x= 5; kill(&x); ...
3
votes
3answers
76 views

Ways of encapsulating choice of Java primitive; Avoiding “magic” primitives

I'm writing a program which creates a large number of large arrays to store data. All of this data has to held in RAM, so I'm avoiding objects and currently using shorts to save space. These shorts ...
3
votes
4answers
97 views

Dividing longs which are returned by method - wrong values

I have two methods: power and factorial: public static long pow(int x, int n) { long p = x; for (int i = 1; i < n; i++) { p *= x; } return p; } public static long fact(int ...

1 2 3