A primitive type is a data type provided by a programming language as a basic building block.
0
votes
0answers
17 views
C++11 Can only primitive data types be declared atomic?
I was wondering, can only primitive data types be declared std::atomic in C++11? Is it possible, say, to declare a library class object to be atomically mutated or accessed?
For example, I might ...
-4
votes
3answers
41 views
Declaring Linked Lists of a certain data type? [closed]
Sup guys was just reading some things about Linked Lists and I stumbled along this question:
Is the following a valid or invalid statement? Explain your answer. (We can assume we are using generics)
...
1
vote
3answers
68 views
Correct way of thinking about primitive assignment
In this example,
int x = 5;
int y = x;
x = 4;
y will remain 5 because x is just being reassigned and it is not manipulating the object it used to refer to in anyway. My question is, is what I just ...
1
vote
2answers
30 views
autoboxing of numeric literals : wrapper initialization vs passing method arguments inconsistency
Please consider 2 cases:
//1
Short s = 10; //obviously compiles
//2
takeShort(10); //error - int is not applicable
//where:
static void takeShort(Short s) {}
I assume that case 1 is changed ...
-1
votes
1answer
28 views
Comparison against Double.TYPE and Double.class
Actually this is not a question, since I will provide the answer right away, so you don't fall for the same thing:
I wanted to check (using reflection) if a Field is a primitive or one of the wrapper ...
0
votes
2answers
58 views
Is there any performance gain from using final modifier on non-primitive static data?
Is there any performance gain from using final modifier on non-primitive static data in Java?
For example:
static final Thread t2 = new Thread(new Thread_2());
versus:
static Thread t2 = new ...
0
votes
0answers
19 views
Counting primitive operators
If ai > CurrentMax Then CurrentMax = ai
The slide I was looking at said that there are 7 primitive operators here, and I just wanted to make sure that I understood which they were.
I assume we ...
3
votes
3answers
44 views
Difference in containsAll behavior for Integer and int arrays (Java)
Could someone possibly explain why the following:
Integer[] arr1 = {1,2,3,4,5};
Collection<?> numbers = Arrays.asList(new Integer[]{1,2,3});
...
0
votes
1answer
60 views
got error in accessing webservice through android application
i got this exceptions in when i m trying to invoke the webservice through android application
it shows following exceptions
04-30 11:51:06.558: E/Error :(297): Error on soapPrimitiveData() Transport ...
0
votes
0answers
33 views
JSON distinguishing between objects and primitives
Currently dealing with a java project using Jackson for JSON R/W and I happened upon a strange issue.
When I originally wrote out the current JSON representation of my data, it included an array of ...
2
votes
6answers
74 views
Purpose of byte type in Java
I read this line in the Java tutorial:
byte: The byte data type is an 8-bit signed two's complement integer. It has
a minimum value of -128 and a maximum value of 127 (inclusive). The
byte ...
0
votes
0answers
40 views
how to generate a galois field array for given primitive polynomial
if i have a galois extension field generated this way:
00001
00010
00011
00100
01110
01111
10000
10000
10001
10010
10011
10100
10101
10110
10111
11000
11001
11010
11011
11100
11101
11110
11111
...
1
vote
4answers
53 views
Java primitive declaratiron
Given the following code snippet:
int i = 0;
int y = + ++i;
System.out.println(y);
The result is 1. Why is this a valid declaration? Can anyone explain what is =+?
0
votes
0answers
13 views
Trouble Calling the draw_quad Method from Another Class in Gosu
I don't get any complaints from Ruby or Gosu, but this code does not actually draw the quad to the screen. Note: I'm of course calling map.new(...).draw in the main Gosu draw method.
...
0
votes
2answers
31 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 ...
-1
votes
1answer
64 views
How To Convert a DWORD / QWORD From C To Double In Java
I have unsigned 32-bit, 64-bit primitives that are stored as bytes. I need to use them in Java. So I thought build them back together from bytes. First I'm playing with random bytes to make sure ...
0
votes
1answer
64 views
Primitive types (string) as parameter- wcf method via ajax post doesn't work (works in fiddler)
Ok this one should be easy for someone who knows this sort of thing better. I am going to limit the scope of the code I provide because this works in one variation (fiddler).
This problem is simple ...
0
votes
0answers
10 views
More clarity about buit-in, basic and primitive data type?
I have seen some definitions about basic data type, primitive data type, and built-in data type. But I am not sure yet, how can I say a data type is basic or primitive or even primitive basic!
Is ...
2
votes
3answers
84 views
Java Reflection ~ Set Inner Object Value Of A Primitive Type
I have an object that is either type of int, short, byte or long and I need to give it a new value. Would that be possible in Java ? And if yes how ?
public static void set(Object obj, int value) ...
3
votes
5answers
95 views
Java - When a String is not a literal but an Object?
Yet again I am revisiting Java after yet another setback in my brain (see my profile). Similar questions have been asked here, but none in the fashion I wish to present this question.
I have always ...
1
vote
4answers
55 views
How primitive value is stored in object and what happens when object is cast
This is a very basic question I guess but I am not sure how to undestand following So if someone would be so kind
Object a = 128;
Object b = 128;
Log.debug("a: " + ((Integer) a == (Integer)b));
...
1
vote
2answers
49 views
Java Concept Confusion : Objects and Primitive Types
I am really confused about this concept:
/* Example with primitive data type */
public class Example1 {
public static void main (String[] args){
int a = 1;
System.out.println("a is " + a);
...
2
votes
4answers
83 views
Java Iterator for primitive types
I have a Java class of the following form:
class Example {
private byte[][] data;
public Example(int s) { data = new byte[s][s]; }
public byte getter(int x, int y) { return ...
0
votes
5answers
54 views
Java volatile on primitivs [duplicate]
Why do we need volatile on primitives? The most common example that I found was that:
volatile boolean shutdownRequested;
...
public void shutdown() { shutdownRequested = true; }
public void ...
2
votes
3answers
68 views
Best library for memory-saving storage of large arrays of char/byte/int?
Before re-inventing any wheels that may have been invented many times already, I am looking for a library that would allow me to deal with potentially huge arrays of char (not Char) while keeping heap ...
2
votes
2answers
103 views
Why are programming languages strictly reliant on primitive types, and is assembly more flexible? [closed]
Why don't we have data types that are 4 bits in size? Why can't we make them if we are so inclined? I have seen bit-fields, but I have heard they are not portable, and perhaps not used as well? I ...
0
votes
3answers
54 views
Issue in primitive wrapper classes
why not to use == when comparing primitive wrapper classes like Long,Integer etc.why they don't work.
public static void main(String[] args) {
Number l = Integer.parseInt("30");
...
1
vote
3answers
26 views
Confusion about protype chain , primitives and objects
in firebug console :
>>> a=12
12
>>> a.__proto__
Number {}
>>> (12).__proto__
Number {}
>>> a.constructor.prototype === (12).__proto__
true
>>> ...
2
votes
3answers
207 views
Java Double vs double: class type vs primitive type
I was curious to what the performance differences between Java's class and primitive type for double were. So I created a little benchmark and found the class type to be 3x-7x slower than the ...
3
votes
3answers
75 views
How to determine the type of primitive in a String representation?
I have a String representation of a primitive and my goal is to determine which primitive is it.
My function is as follows:
public Object getPrimitive(String primitiveAsString) {
.....
}
So for ...
0
votes
1answer
78 views
XNA Alpha Blending With Primitives and Sprites
I've been using XNA for awhile now and I really enjoy using its interface. Right now we're trying to make a "fog of war" system. We're making an RTS and we're basically trying to obscure the map. ...
0
votes
0answers
71 views
Unable to correctly read doubles in little endian from a binary file in Java
Using RandomAccessFile (initialised as raf with the "r" marker) I am trying to get a set of 3 doubles from a binary file, which is in little-endian. The doubles are contained in a block of 24 bytes in ...
0
votes
1answer
77 views
java junit test cases not consistent [closed]
I'm new here, hi all. I looked around already for some info on this and didn't find anything, but I'm sure it's something simple that I'm missing. I've got a simple program that I'm trying to test ...
0
votes
1answer
116 views
Wrap native int[] into a jintarray
I have a native method which calls a Java function to create a bitmap, then returns the bitmap data as array of int.
The method isn't very efficient, because I need to create a Bitmap, then an ...
1
vote
1answer
251 views
XNA / MonoGame: depth sorting alpha blended UserPrimitives
Googling around a lot for this, read this very useful article, but still wondering about a solution for my project. This screenshot illustrates my problem perfectly:
There are 2 objects: the red ...
1
vote
3answers
104 views
Is there a way to write generic Java methods that work with primitive array types? [duplicate]
EDIT: This question specifically regards Java primitive arrays. There are other questions that address writing generic methods for primitive scalar types, but arrays are sufficiently different to ...
0
votes
1answer
35 views
NSString and math?
I am newbie on Xcode. So i try to make a single app but i stuck somewhere actually i know where :D i can't write math codes i didnt understand their fundamentals please guys tell me how can i write ...
1
vote
1answer
41 views
Why virtual calls on value types work with pointers to the value and boxed values?
In the example below, I call a virtual method on a value type (int):
namespace ShortTest
{
class Program
{
static void Main(string[] args)
{
int i = 42;
...
0
votes
2answers
58 views
Java object that encapsulates all primitives — useful in OutputStreams
I have a program that receives binary data, and depending on its heading, represents either a float, int, double, char, string, etc.
In the program, I utilize the ByteBuffer class to take that byte[] ...
-1
votes
1answer
240 views
What's the largest value an NSNumber can store?
What's the largest value an NSNumber can store?
// ok
NSNumber *value = @(1 << 31);
// gives compiler error, so max NSNumber is 32-bit uint?
NSNumber *value = @(1 << 32);
5
votes
2answers
83 views
How do I convert MySQL unsigned ints to Protocol Buffer uint32s in Java?
I'm working on converting a bunch of old tab-separated MySQL database dump files into Protocol Buffers and have run into a snag. The MySQL table includes a field of type int(11) unsigned, which I have ...
0
votes
2answers
145 views
Java ArrayList: Adding primitive type or its wrapper-class: What's the difference?
imagine the following ArrayList in Java:
ArrayList<Integer> u = new ArrayList<Integer>();
I want to know if there is a difference when adding new values either as primitive types or as ...
3
votes
2answers
141 views
Primitive type in JPA mapping. What if the database colum may be NULL?
Given this class mapped with JPA (using JPA 1.0 and Hibernate):
@Entity
public class Foo {
private int bar;
/* ... */
}
What happens if I try to load a record which has the BAR column ...
-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
4answers
129 views
Concat an integer to a String - use String literal or primitive from performance and memory point of view?
Option 1:
String newStr = someStr + 3 + "]";
Option 2:
String newStr = someStr + "3" + "]";
Which option is better with regards to performance, memory and general practice?
What are some ...
-1
votes
3answers
175 views
why are there Primitive datatype in Java? [duplicate]
Possible Duplicate:
When we have wrappers classes, why primitives are supported?
If there are Wrapper classes which make Java pure object-oriented language, then why are there Primitive ...
1
vote
5answers
111 views
Is String a primitive or an Object in Android or Java?
As per Android API http://developer.android.com/guide/topics/data/data-storage.html#pref
Shared Preference allows you to save and retrieve persistent key-value
pairs of primitive data types. ...
0
votes
1answer
145 views
MonoGame: Some VertexColorPosition dissappear while drawing user primitives(DrawUserPrimitives)
I am a complete beginner in XNA/MonoGame developing. I started my own project using MonoGame with XAML for WinRT, hopefully that it will reach Windows App Store one day. I encountered a serious issue, ...
0
votes
1answer
86 views
Use glPrimitiveRestartIndex to draw GL_LINE_LOOPS
I have some questions about glPrimitiveRestartIndex and how to use it. Basically, I want to draw a number of contours with GL_LINE_LOOP, whose vertices are stored in an array.
I've read the chapter in ...
0
votes
7answers
111 views
Is there a reason to always use Objects instead of primitives?
So I just started my second programming class in Java, and this is the example given to us by the professor to demonstrate loops and arrays.
public class ArraysLoopsModulus {
...

