Tagged Questions

0
votes
2answers
39 views

Can I have an optional boolean parameter for an ASP.NET SOAP Webservice

I want to build a webservice with this signature, which does not throw an exception if param2 is left empty. Is this possible? [WebMethod] public string HelloWorld(string param1, …
2
votes
2answers
63 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 (Strin …
0
votes
1answer
52 views

Should I initialize ALL primitive data types to ‘safe’ values in Obj-C?

Is there any primitive data type that it's safe to not initialize? How about structs like CGPoints or NSRects?
3
votes
6answers
146 views

When to use wrapper class and primitive type

Hello All, When i should go for wrapper class over primitive types? Or On what circumstance i should choose between wrapper / Primitive types?
0
votes
0answers
79 views

Can you extract the value of strings from an IBM PHD java heap dump?

I have a PHD format heap dump from an IBM jvm and I wish to examine the values of some strings. With the Sun JVM's binary hprof dumps this is possible, but I haven't been able to r …
5
votes
5answers
211 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?
2
votes
5answers
141 views

Java: Unsigned numbers

Hello, Is there a way in Java to use Unsigned numbers like in (My)SQL? For example: I want to use an 8-bit variable (byte) with a range like: 0 -> 256; instead of -128 -> 127.
0
votes
2answers
711 views

How to convert an NSString into an NSNumber

Hello, 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 …
4
votes
6answers
367 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?!
1
vote
4answers
757 views

Java - int/long, float/double

I understand that "2.5" is automatically a double, and to make it a float, I need to do "2.5F" (or should the F be lowercase?), and that I should use a float, say, if I had a const …
5
votes
7answers
93 views

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

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 …
2
votes
4answers
318 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, expanda …
2
votes
3answers
2k views

Objective C - NSNumber, NSInteger, …

(I develop for iPhone) 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?
6
votes
9answers
211 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 s …
3
votes
1answer
546 views

Entity Framework: LINQ to Entities only supports casting Entity Data Model primitive types

I wrote a method to allow for an Expression to be passed in for the orderby clause, but I ran into this problem. Unable to cast the type 'System.DateTime' to type 'System.I …

1 2 next
15 30 50 per page