Tagged Questions

9
votes
5answers
421 views

Why is the C# compiler emitting a callvirt instruction for a GetType() method call?

I am curious to know why this is happening. Please read the code example below and the corresponding IL that was emitted in comments below each section: using System; class Program { static …
2
votes
8answers
185 views

Java: type safety, generics, .equals()

I'm trying to override equals() for a parametrized class. How can I make sure that this parameter is the same? /* (non-Javadoc) * @see java.lang.Object#equals(java.lang.Object) * Because this is …
2
votes
4answers
115 views

Emulating a value type structure class in PHP

Is there any way to emulate a structure class in PHP? ie a class which passes by value and not by reference, so it can still be type hinted... And if so, what different techniques could be used? …
0
votes
1answer
8 views

Type-safe alternative to HttpContext.Items

I am implementing an HTTP Module in ASP.NET to identify geographical information based on the request's IP (a GeoIP module) and I will need to place things somewhere so the handler or later modules …
0
votes
2answers
192 views

Java: Type safety - unchecked cast

Here is my code: Object[] data = GeneComparison.readData(files); MyGenome genome = (MyGenome) data[0]; LinkedList<Species> breeds = (LinkedList<Species>) data[1]; It gives this warning …
0
votes
7answers
214 views

Best way to design a multi-type object

Let's say I have a data object, but this object can hold one of several types of data. class Foo { int intFoo; double doubleFoo; string stringFoo; } Now, I want to create an accessor. …