1
vote
1answer
62 views
Creating (boxed) primitive instance when the class is known
I need a method that returns an instance of the supplied class type. Let's assume that the supplied types are limited to such that an "empty" instance of them can be created. For i …
4
votes
2answers
109 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, D …
2
votes
3answers
154 views
Are primitives different in java and c#?
I am manually converting code from Java to C# and struggling with (what I call) primitive types (see, e.g. http://stackoverflow.com/questions/1597154/do-autoboxing-and-unboxing-beh …
0
votes
2answers
245 views
Definitions of “primitive”, “value type”, “struct”, “class”, “wrap” in Java and C#
I have been trying to understand the use of "primitives" in Java and C# and the difference between them (if any). I have asked a series of questions on SO and some of the answers s …
0
votes
4answers
114 views
objective-c primitive arrays
I wanna have a mutable array with primitives in obj-c (selectors). What's the recommended way to do this? NSArray and those can only hold objects.
2
votes
3answers
897 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.
2
votes
2answers
63 views
Java: JAXB and using char
Hello,
I'm working on a project with JAXB but I run into a small problem with JAXB and the char datatype.
char gender = 'M';
Translates after marshalling into:
<gender> …
0
votes
2answers
94 views
Most basic transformed vertex-drawing with Direct3D
I'm absolutely new to DirectX and I'd like to draw some untransformed primitives with the most basic Direct3D configuration (for learning purposes). I already drew some primitives …
1
vote
1answer
132 views
Is there ever a good time to use int32 instead of sint32 in Google Protocol Buffers?
I've been reading up on Google Protocol Buffers recently, which allows for a variety of scalar value types to be used in messages.
According to their documentation, there's three …
6
votes
6answers
203 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;
i …
0
votes
1answer
132 views
Java: proper way to get the class of a primitive array for reflection
I'm trying to use reflection to call a method that takes in a byte array.
I'm starting off doing:
Class myClass = anObject.getClass();
Class[] parameterTypes =
{byte[].getClass( …
5
votes
3answers
3k 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 som …
0
votes
1answer
173 views
Dynamic primitive type property setting in Objective C
I am trying to write a library so that it is generic enough that its useful. The problem is that it needs to update properties of other classes, both the property and class should …
2
votes
7answers
354 views
Is there any difference between these two statements?
float ff = 1.2f;
Float fo = new Float(1.2f);
double fg = 3.2d;
Double fh = new Double(2.1d);
Can I use '=' between the (1) and (3) or between the (2) and (4)??
8
votes
7answers
1k views
Generic Type Conversion FROM String
Hi Guys,
Here is the problem I am having, 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 …
