The tag has no wiki summary.

learn more… | top users | synonyms

-1
votes
1answer
57 views

Why is it allowed to add primitive datatypes to an ArrayList?

I understand that it is possible to add an Integer Object to an ArrayList of type Integer. That makes sense to me. Like this: ArrayList<Integer> list = new ArrayList<Integer>(); ...
1
vote
1answer
59 views

Java: Should I use float or Float? [duplicate]

My colleague told me that I should use float whenever possible to reduce the object creation and increase the performance. Java silently converts float to Float (this needs some computational power) ...
0
votes
2answers
20 views

How to get the primitive from a boxed Object

When using custom callbacks (like android:onClick) the actual method is called using something like mHandler.invoke(context, View.this); According to the doc on invoke: Object ...
1
vote
3answers
51 views

Java - BigDecimal and Reflection

when i check the parameter of the method which is in a class using java reflection for java.math.BigDecimal and java.lang.String isPrimitive() return false. yes they are not primitive but i want to ...
0
votes
1answer
61 views

Java-Enums- How to create with default values and access them

i have a java enum which have to have some default values like for the String some default values int some degault values etc i have created a enum like the following package com.hexgen.tools; ...
0
votes
1answer
40 views

how to store a collection of primitive type (String) into database

I'm trying to map my classes to the SQLite database using ORMLite and i have trouble to store a collection of String i have this error : java.lang.IllegalArgumentException: No fields have a ...
0
votes
2answers
30 views

C# Storing one or many primitives

string noOfAccountsString = Console.ReadLine(); int noOfAccounts = int.Parse(noOfAccountsString); Would you say this is bad practice? When you could just store one of these variables and perform the ...
0
votes
1answer
65 views

Casting an instance of Object to primitive type or Object Type

when I need to cast an instance of type Object to a double , which of the following is better and why ? Double d = (Double) object; Or double d = (double) object;
-3
votes
4answers
185 views

What is the range of the long double C++ [duplicate]

What is the range of long double in C++?
0
votes
2answers
101 views

How to change type of int to double in c++

Is there any way to initialize a variable as a general number type or int and then change its type to double for example? TYPE x = 4; // commands changing its type here it(variable x) became double. ...
5
votes
1answer
87 views

Primitive variable type in compile time

Not sure if I am wording this correctly. Please let me know if you require more information. We have a requirement where we need to determine the type of variable based on a system environment ...
1
vote
1answer
76 views

Primitive object size in java/scala and 'as<SomePrimitive>Buffer() methods invocation

My objective is generalize shapes creation from Android OpenGL ES tutorial here: http://developer.android.com/training/graphics/opengl/shapes.html It looks like this right now: val squareCoords = ...
0
votes
2answers
76 views

Adding non-primitive typed data as property value in nodes and relationships

In neo4j we can add node and relationships with various properties using node.setProperty("NodePropertyName",NodePropertyValue) relationship.setProperty("EdgePropertyName",EdgePropertyValue) Is ...
0
votes
1answer
128 views

Check in reflection if type is primitive or type is object

Im using the following code to find class members in reflection that are primitive and some object ,my question is there is a way to identify if field is type primitive ,object ,class reference ...
0
votes
1answer
52 views

using constants or enum for primitive types

I wonder what the preferred way to use if I want to ask for primitive type name . Do i need to create an enum class or use already existing one (i was search this without success) What is your ...
-2
votes
1answer
84 views

Reflection get fundamental types

Looking for a way to get the fundamental/core types in c# without using the IsPrimitive and a bunch of "||". Basically I want the decimal, datetime, string to be included, but I don't want to ...
0
votes
2answers
56 views

Objective-C consecutive format specifiers printing 0

This is a little problem I am having, and although it seems to be basic and simple I cannot find it out, here is the code: int main (int argc, const char * argv[]) { unsigned long long ep = ...
1
vote
5answers
138 views

Is it possible to create a bitmask for ~100 constants?

Would that mean that the 100th constant would have to be 1 << 100?
1
vote
3answers
231 views

Converting a float to a byte array and vice versa in Java

I am trying to convert a float to a byte array. Here is the method: public static byte [] float2ByteArray (float value) { Float f = new Float(value); return new byte [] { (byte) ...
-1
votes
3answers
43 views

Method for getting value for primitive types

II am having so much trouble getting this method: A method in SmallBank named printBankDetailsthat prints out the details of the stored BankAccounts. This method should work in the case that there is ...
-1
votes
3answers
58 views

Java conventions about primitive types

What are the Java conventions on primitive types? Should I be documenting each primitive type if I name it properly? /** * This is the variable that handles whether or not a person has turned on a ...
1
vote
5answers
128 views

If statement on array

I have the following java bit if(board[i][col].equals(true)) return false However, when I compile it I get the following error - "int cannot be dereferenced" - can anybody please explan what ...
5
votes
1answer
120 views

Program to calculate the size of a boolean variable [duplicate]

Possible Duplicate: Java - boolean primitive type - size I've designed this program to calculate the size of a boolean in Java. public class BooleanSizeTest{ /** * This method ...
6
votes
2answers
183 views

std::vector<int>::clear, constant time? [duplicate]

Possible Duplicate: What is the complexity of std::vector<T>::clear() when T is a primitive type? If I have a std::vector with a primitive type, and I call clear() (this way push_back ...
0
votes
2answers
87 views

Java Static Elements Getting accessed by different class

In Java Static elements are getting accessed by specifying only the Class name followed by dot operator. Assume, I have a Class named ClassA with a static primitive type int a = 10; What If I have ...
4
votes
1answer
109 views

Extend Clojure protocol to a primitive array

I'd like to extend a Clojure protocol to deal with Java primitive arrays. (defprotocol PVectorisable (to-vector [a])) (extend-protocol PVectorisable ?????? (to-vector [coll] ...
3
votes
2answers
221 views

Why are value classes restricted to AnyVal?

As far as I understand value classes in Scala are just there to wrap primitive types like Int or Boolean into another type without introducing additional memory usage. So they are basically used as a ...
0
votes
3answers
326 views

Java primitive data type byte and class Byte

Background: I have an assignment where I'm going to pass information through sockets to a very limited extent. It can be a maximum of 10 bytes per message and I was thinking I'm gonna send just one ...
0
votes
0answers
67 views

Cast, EDM primitive and enumeration types and 0 to 1 relationship

Is there any way I caa check in an IQueryable query, if a child object is null? Here's my simple query (from client in clients select new QuotationItemClientWebModel ...
-2
votes
1answer
42 views

Why do we get different results/outputs on different compilers?

#include <stdio.h> int main () { double num = 5.2; int var = 5; printf("%d\t", sizeof(!num)); printf("%d\t", sizeof(var = 15/2)); printf("%d", var); return 0; } Running ...
0
votes
4answers
479 views

Is it valid to compare a double with an int in java?

Utilities.getDistance(uni, enemyuni) <= uni.getAttackRange() Utilities.getDistance returns double and getAttackRange returns int. The above code is part of an if statement and it needs to be ...
0
votes
1answer
33 views

Why Object Types needs Dynamic Memory and Primitive types needs Static memory?

I was reading on memory Allocation concepts. where I found a statement saying Object Types needs Dynamic Memory and Primitive types needs Static memory they justify it saying If the requirement is of ...
0
votes
2answers
377 views

Implement Comparator for primitive boolean type?

I need some classes implements Comparator, and for one I want to compare primitive boolean (not Boolean) values. IF it was a *B*oolean, I would just return boolA.compareTo(boolB); which would return ...
2
votes
3answers
86 views

overriding toString() representation of object returns unexpected symbol

I'm writing a JUnit test method for a Clock class to ensure that the toString representation of the object returns in the format that I want it to. So, I've overriden the toString() and written it as ...
0
votes
2answers
221 views

What different from long.class and Long.class?

Could any explain to me this test: assertTrue(Number.class.isAssignableFrom(long.class)); //---> FAILED assertTrue(Number.class.isAssignableFrom(Long.class)); //---> PASSED So what is the ...
1
vote
2answers
56 views

Using getByte() with primitive data

In JAVA the method getByte() is undefined for for Ints, Booleans and all primitive data types (I believe). Is there a way I can get my Boolean and/or Int variables to work with the method. Or what ...
2
votes
2answers
184 views

How can I use primitives in Scala?

Can I use primitives in Scala? The use case is for storing billions of ints, so the difference between 4 bytes (for an int) and 16 bytes (for an Integer) is important.
3
votes
5answers
97 views

Primitive value conversion

This is the snippet of code in Java: int i = 1234567890;      float f = i;     System.out.println(i - (int)f); Why is that the output is not equal to 0? It performs widening, so it is not supposed ...
2
votes
2answers
106 views

For bitwise operations in Java, do I need to care that most numeric types in Java are signed?

This is a really basic question, but I've never fully convinced myself that my intuitive answer of "it makes no difference" is correct, so maybe someone has a good way to understand this: If all I ...
1
vote
3answers
420 views

What is the difference between value types and primitive types? [closed]

Reading a book about C# i noticed that sometimes is mentioned value type and sometimes primitive type for some data type (e.g. int, double) . I thought they were the same thing, but they are really ...
0
votes
1answer
99 views

Java is not purely Object Oriented - what does this mean w.r.t primitve types?

When I look at the javadocs of Class.java it says: /*The primitive Java types ({@code boolean}, * {@code byte}, {@code char}, {@code short}, * {@code int}, {@code long}, {@code float}, and * ...
0
votes
3answers
89 views

How is the variable sized JavaScript string a primitive type?

From what I understand, the (basic) string type in JavaScript is a primitive type, meaning its variables are allocated on the stack. I would have thought that for a type to be allocatable on the ...
4
votes
6answers
358 views

Why are Java wrapper classes immutable?

I know the usual reasons that apply to general immutable classes, viz can not change as a side effect easy to reason about their state inherently thread safe no need to provide clone/copy ...
1
vote
2answers
1k views

java typeof primitive data types

Is there a "typeof"-like function in Java that returns the type of a primitive data type (PDT) variable or an expression of operands PDTs ? instanceof seems to work for class types only and doesn't ...
2
votes
3answers
367 views

Java performance puzzler: wrapper classes faster than primitive types?

in order to implement some image analysis algorithms without having to worry too much on the data type (i.e. without having too much duplicate code), I'm setting up the visitor pattern for primitive ...
0
votes
1answer
277 views

Why is there GLint and GLfloat?

I get that Open GL needs to use numbers, but why not just use regular ints and floats or the wrapper classes already in existance (whichever is necessary for the whole world of Open GL to fit together ...
1
vote
1answer
475 views

Bowling Score and Exception Handling

This is a code for calculating the Bowling Score,I need help in fixing this error : Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: 0 Here is my ...
0
votes
1answer
156 views

Sorting Array ,Sorting ArrayList ,using Collections

Ok,still learning Arrays. I wrote this code which fills the array named "rand" with random numbers between 0 and 1( exclusive). I want to start learning Complexity. the For loop executes n times ...
0
votes
0answers
108 views

Data Structures for Junior Java Developer [closed]

Maybe it is early to ask,but which Data Structures should I go for before even looking for a job: From the examples,and practices that I have seen,I saw String is very important,Arrays,also,what ...
2
votes
3answers
189 views

What are the Java primitive data type modifiers?

Alright, I've been programming in Java for the better part of three years, now, and consider myself very experienced. However, while looking over the Java SE source code, I ran into something I didn't ...

1 2 3 4 5