Tagged Questions

A primitive type is a data type provided by a programming language as a basic building block.

learn more… | top users | synonyms (1)

35
votes
6answers
1k views

In Java, is the result of the addition of two chars an int or a char?

When adding 'a' + 'b' it produces 195. I asked on StackOverflow IRC channel they say the output datatype is char. I think it is int and some others do as well. What is the correct answer?
31
votes
7answers
14k views

Generic type conversion FROM string

I have a class that I want to use to store "properties" for another class. These properties simply have a name and a value. Ideally, what I would like is to be able to add typed properties, so that ...
28
votes
7answers
9k views

Generic type checking

Is there a way to enforce/limit the types that are passed to primitives? (bool, int, string, etc.) Now, I know you can limit the generic type parameter to a type or interface implementation via the ...
23
votes
5answers
22k views

How do I draw lines using XNA?

I've read a bunch of tutorials involving XNA (and it's various versions) and I still am a little confused on drawing primitives. Everything seems to be really convoluted. Can someone show me, using ...
21
votes
5answers
1k views

How many primitives does it take to build a LISP machine? Ten, seven or five?

On this site they say there are 10 LISP primitives. The primitives are: atom, quote, eq, car, cdr, cons, cond, lambda, label, apply. http://hyperpolyglot.wikidot.com/lisp#ten-primitives Stevey ...
21
votes
5answers
20k views

Java equivalent of unsigned long long?

In C++, I enjoyed having access to a 64 bit unsigned integer, via unsigned long long int, or via uint64_t. Now, in Java longs are 64 bits, I know. However, they are signed. Is there an unsigned ...
21
votes
11answers
3k views

Why can't I call toString() on a Java primitive?

I want to convert a primitive to a string, and I tried: myInt.toString(); This fails with the error: int cannot be dereferenced Now, I get that primitives are not reference types (ie, not an ...
13
votes
3answers
353 views

How are the “primitive” types defined non-recursively?

Since a struct in C# consists of the bits of its members, you cannot have a value type T which includes any T fields: // Struct member 'T.m_field' of type 'T' causes a cycle in the struct layout ...
13
votes
8answers
353 views

Behind the scenes, what's happening with decimal value type in C#/.NET?

How is the decimal type implemented? Update It's a 128-bit value type (16 bytes) 1 sign bit 96 bits (12 bytes) for the mantissa 8 bits for the exponent remaining bits (23 of them!) set to 0 ...
12
votes
7answers
389 views

What is the difference between String.Format and string.Format (and other static members of primitive data types)?

As far as I can tell, any static member of a class like String or Int32 can also be accessed from the related primitive data type. So, String.Format is the same as string.Format, and Int32.MaxValue is ...
11
votes
2answers
957 views

Are there any good 3rd party libraries build on top of openCL yet?

I'm thinking in particular of processing primitives, things like FFT, convolution, correlation, matrix mathematics, any kind of machine vision primitives. I haven't been able to find anything along ...
11
votes
3answers
2k views

Why are there no byte or short literals in Java?

I can create a literal long by appending an L to the value; why can't I create a literal short or byte in some similar way? Why do I need to use an int literal with a cast? And if the answer is ...
10
votes
3answers
553 views

Defining the defmacro function using only LISP primitives?

McCarthy's Elementary S-functions and predicates were atom, eq, car, cdr, cons He then went on to add to his basic notation, to enable writing what he called S-functions: quote, cond, lambda, label ...
10
votes
4answers
13k views

Objective C Boolean Array

I need to utilize an array of booleans in objective-c. I've got it mostly set up, but the compiler throws a warning at the following statement: [updated_users replaceObjectAtIndex:index ...
10
votes
8answers
20k views

Primitive type 'short' - casting in Java

I have a question about the primitive type 'short' in Java. I am using JDK 1.6. If I have the following: short a = 2; short b = 3; short c = a + b; the compiler does not want to compile - it ...
10
votes
9answers
864 views

Is it safe to assume an int will always be 32 bits in C#?

In my C# source code I may have declared integers as: int i = 5; or Int32 i = 5; In the currently prevalent 32bit world they are equivalent. However, as we move into a 64bit world am I correct ...
9
votes
7answers
537 views

In C# are the terms “Primitive” and “Literal” interchangeable?

A discussion earlier today led me to question whether or not my understanding of primtives and literals is correct. My understanding is that a literal type is specifically a type which can have a ...
9
votes
9answers
7k views

What is the third boolean state in java?

While I know that by definition a boolean consists of only two states, true or false. I was wondering what value does a boolean have before it is initialized with one of these states.
9
votes
12answers
882 views

Anyone using short and byte primitive types, in real apps?

I have been programming in Java since 2004, mostly enterprise and web applications. But I have never used short or byte, other than a toy program just to know how these types work. Even in a for loop ...
9
votes
4answers
9k views

Dynamically find the class that represents a primitive Java type

I need to make some reflective method calls in Java. Those calls will include methods that have arguments that are primitive types (int, double, etc.). The way to specify such types when looking up ...
8
votes
4answers
2k views

Why don't Generics support primitive types?

Why Generics (in Java) works with the objects but not with primitive types? For example Gen<Integer> inum = new Gen<Integer>(100); // works fine, but Gen<int> inums = new ...
8
votes
3answers
2k views

Is this really widening vs autoboxing?

I saw this in another question in reference to shortcomings of the java spec: There are more shortcomings and this is a subtle topic. Check this out: public class methodOverloading{ ...
7
votes
4answers
95 views

Why can't this be a primitive?

I was messing around with JavaScript, and noticed that this can never be a primitive. What am I talking about? Let me explain. Take this function for example. function test(){ return typeof ...
7
votes
6answers
2k views

Cross-platform primitive data types in C++

Unlike Java or C#, primitive data types in C++ can vary in size depending on the platform. For example, int is not guaranteed to be a 32-bit integer. Various compiler environments define data types ...
7
votes
7answers
286 views

Inconsistent behavior on java's ==

Consider this code: class test { public static void main(String[] args) { test inst_test = new test(); int i1 = 2000; int i2 = 2000; int i3 = 2; int i4 = 2; ...
7
votes
2answers
585 views

Custom primitives in C#?

Apart from the questionable usefulness of this, I'd like to ask if it is possible to do something along these lines. class MyPrimitive { String value; public String Value { ...
7
votes
6answers
1k views

What is the use of passing const references to primitive types?

In a project I maintain, I see a lot of code like this for simple get/set methods const int & MyClass::getFoo() { return m_foo; } void MyClass::setFoo(const int & foo) { m_foo = foo; } ...
7
votes
7answers
3k views

int or Integer

I need to create a data transfer object, which I will use for storing the records retrieved from database. In this data transfer object, I need to declare a numeric field. For that which one is better ...
6
votes
6answers
108 views

Do arrays of “non-zero” primitives require more memory?

Hi all when writing an array list implementation, I understand it is important to set Item(x) to null when it is removed (instead of simply quantity -= 1) so as to prevent memory leaks. However, if ...
6
votes
2answers
185 views

haskell modulus primitive recursion

I'm trying to create a modulus function within haskell using primtive recursive functions. I know it's possible (because it's on the list of example functions on wikipedia) And I know how i'd ...
6
votes
5answers
322 views

Unsigned negative primitives?

In C++ we can make primitives unsigned. But they are always positive. Is there also a way to make unsigned negative variables? I know the word unsigned means "without sign", so also not a minus (-) ...
6
votes
3answers
460 views

XML literals in JavaScript?

E4X (Ecma-357) is an extension to ECMAScript that adds XML literals as first-class primitives. That's awesome, but with only Mozilla and Adobe support (without V8 and IE support too), E4X is ...
6
votes
6answers
4k views

Using int as a type parameter for java.util.Dictionary

When I try to declare a Dictionary as such: private Dictionary<String, int> map; The compiler gives me the following error: Syntax error on token "int", Dimensions expected after this ...
6
votes
2answers
2k views

Is it possible to use a primitive type (int) in as a generic type in Java?

Specifically, with a SortedMap<Vector<String>, int> I get "dimensions expected after this (int) token." Help!
5
votes
3answers
108 views

What is the storage cost for a boxed primitive in Java?

How large, in bytes, is a boxed primitive like java.lang.Integer or java.lang.Character in Java? An int is 4 bytes, a typical pointer is also 4 byte (if not compressed by the JVM). Is the cost for an ...
5
votes
2answers
147 views

Java: how much time does an empty loop use?

I am trying to test the speed of autoboxing and unboxing in Java, but when I try to compare it against an empty loop on a primitive, I noticed one curious thing. This snippet: for (int j = 0; j < ...
5
votes
1answer
88 views

The inheritance of javascript

Maybe this question is easy,but I can't understand now. String.prototype.self=function() { return this; } var s="s"; alert("s".self()=="s".self()) //false; alert(s.self()==s.self()) //false; ...
5
votes
2answers
13k views

How to cast Object to boolean?

How can I cast a Java object into a boolean primitive I tried like below but it doesn't work boolean di = new Boolean(someObject).booleanValue(); The constructor Boolean(Object) is undefined ...
5
votes
2answers
432 views

.NET primitives and type hierarchies, why was it designed like this?

I would like to understand why on .NET there are nine integer types: Char, Byte, SByte, Int16, UInt16, Int32, UInt32, Int64, and UInt64; plus other numeric types: Single, Double, Decimal; and all ...
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 ...
5
votes
4answers
8k views

Declaring, Properties, Synthesizing, and Implementing int[] array in Objective C

How do you declare, set properties, synthesize, and implement an int array of size 5 in Objective C? I'm writing this code for an iphone app. Thanks.
5
votes
9answers
6k views

Comparing Character, Integer and similar types in Java: Use equals or ==?

I wanted to make sure about something in Java: If I have a Character or an Integer or a Long and those sort of things, should I use equals or is == sufficient? I know that with strings there are no ...
5
votes
5answers
1k views

When should I use primitives instead of wrapping objects?

Actually here is a similar topic with little practical value. As far as I understand, primitives perform better and should be used everywhere except for the cases where Object-related features (e.g. ...
4
votes
3answers
83 views

What's the difference between primitive and reference types?

This is a past exam question and I was wondering what a primitive type and reference type are first off? With an array I know the a reference type is where the array is composed of objects or ...
4
votes
3answers
125 views

object vs. primitive

Recently had an interviewer ask to define the difference between objects and primitives. Seemed like an odd question considering that all languages begin with a primitive. How would you have answered ...
4
votes
9answers
474 views

How can I check if a variable exists in Java?

I want to write to a variable only if there isn't anything already there. Here is my code so far. if (inv[0] == null) { inv[0]=map.getTileId(tileX-1, tileY-1, 0); } It gives me this error: ...
4
votes
3answers
204 views

Cast int to double then back to int in java

quick question. Would this always be true? int i = ...; double d = i; if (i == (int) d) ... Or I need to do rounding to be sure? if (i == Math.round(d)) ...
4
votes
7answers
5k views

Default value of Boolean in java [closed]

Possible Duplicate: Java Boolean Question What is the default value of Boolean (primitive wrapper) in Java
4
votes
4answers
159 views

When to use List<Long> instead of long[]?

There's something I really don't understand: a lot (see my comment) of people complain that Java isn't really OO because you still have access to primitive and primitive arrays. Some people go as far ...
4
votes
4answers
865 views

java: Integer equals vs. ==

As of java 1.5, you can pretty much interchange Integer with int in many situations. However, I found a potential defect in my code that surprised me a bit. The following code: Integer cdiCt = ...; ...

1 2 3 4