3
votes
2answers
110 views
Java: Why isn’t autoboxing happening here?
This gives me an error:
int[] l = new int[] {0, 2, 192, -1, 3, 9, 2, 2};
int[] l2 = new int[] {9001, 7, 21, 4, -3, 11, 10, 10};
int[] l3 = new int[] {5, 5, 5, 64, 21, 12, 13, 2 …
0
votes
2answers
46 views
Get type of null array
I'm working on some serialization routines, and I need a way to get the type of an input array.
Let's say I have the following object:
class myclass {
public int foo;
pu …
0
votes
3answers
66 views
Python: Binding method
In following example I am trying to bind a method object via types.MethodType(...). It does not seem to work. Any suggestions? Thanks in advance.
import types
class Base:
def …
5
votes
8answers
213 views
C# - how to determine whether a Type is a number
Hi Guys,
Is there a way to determine whether or not a given .Net Type is a number? For example: System.UInt32/UInt16/Double are all numbers. I want to avoid a long switch-case on t …
0
votes
2answers
93 views
Does Not Name A Type in C++
in C++ when i get an error that says xxxxx does not name a type in yyy.h
What does that mean?
yyy.h has included the header that xxxx is in.
Example, I use:
typedef CP_M_Refere …
3
votes
5answers
154 views
Why isn’t DRY considered a good thing for type declarations?
It seems like people who would never dare cut and paste code have no problem specifying the type of something over and over and over. Why isn't it emphasized as a good practice th …
1
vote
3answers
22 views
Is there a BUG Calatog, classifying the bugs with general descriptions?
Hi,
Is there any work done on classifying the bugs; practically categorizing and sub-grouping them based on their their occurrence place, side-effects, complexity and so on? With …
0
votes
1answer
29 views
Encoding/decoding CGFloat on 32- vs 64-bit
I'm converting an app to work in 64-bit. The Apple docs state that the CGFloat type is a float on 32-bit and a double on 64-bit.
If that is so, how do you handle encoding/decoding …
5
votes
3answers
123 views
If the Nothing type is at the bottom of the class hierarchy, why can I not call any conceivable method on it?
The scala type Nothing represents (as I understand it) the bottom of the type hierarchy, also denoted by the symbol ⊥. That is, Nothing is a sub-type of any given type. The require …
1
vote
5answers
85 views
Having many stacks with different types
I'm making a C program that needs to use two stacks. One needs to hold chars, the other needs to hold doubles. I have two structs, node and stack:
struct node {
double value;
…
1
vote
3answers
126 views
Access violation when calling external function (C++) from Delphi application
I've an external DLL written in C++. The piece below declares a struct type and a function, which, being given a pointer, fills a variable of this type:
enum LimitType { NoLimit, …
1
vote
1answer
50 views
Generics Type parameters and Types
I have some code that works like the below. I was wondering if its possible to get a Type object for the generic type passed to the DoSomething function. I realise that T is a ty …
1
vote
4answers
70 views
Handling Reference Types
When reference variable can be passed by reference :
class Example
{
public string str="Demo";
public int[] intValues={1,3,4,5};
public static voi …
0
votes
7answers
109 views
Java - Instantiating objects of type X when all you have is the reference type
I had a quick look at the "Related Questions" suggested but I couldn't find one directly related to what I'm asking. Even if there was one, I'd still appreciate your opinion on the …
2
votes
2answers
60 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 …
