Types, and type systems, are used to enforce levels of abstraction in programs.
2
votes
2answers
51 views
C# can a class be aliased (not with 'using')
In Delphi, the following is possible:
class Alias = Dictionary<long, object>;
Alias is now a dictionary<long, object>.
Is this possible in C#? I've never figured out how without having ...
1
vote
4answers
108 views
How to return a 2d array where one dimension is of unknown size?
This is related to this question. I have a function void doConfig(mappings, int& numOfMappings) and I'm not sure how to declare mappings. It is a two dimensional array whose elements are chars. ...
1
vote
2answers
29 views
Ensure string value from JSON response
I have a webservice spitting out JSON responses from the database, which I intend to use in my iPad app.
However, depending on the server where the webservice is run, it either casts integers to ...
0
votes
1answer
50 views
Pointer to a function inside a derived type on a module in fortran
I guess I could easily use some help here, since I'm messing around with some fortran 2003 but can't seem to understand how to do things really.
The fact is that I need to write a fortran code that ...
6
votes
2answers
129 views
Why does java have Type when it already has Object?
I was hoping that someone could tell me why java has java.lang.reflect.Type, when everything already inherits from Object?
Could someone please give an example of a case where I would need to use a ...
2
votes
3answers
212 views
slower to mix logical variables with double?
I have 0-1 valued vectors that I need to do some matrix operations on. They are not very sparse (only half of the values are 0) but saving them as a logical variable instead of double saves 8 times ...
-2
votes
3answers
47 views
style input file button with JS - change text after file chosen
I have an HTML input which I am hiding because I don't like to see "Choose a file".
http://jsfiddle.net/tPTxJ/
Codes:
<a href="#" onclick="document.getElementById('userFile').click(); return ...
3
votes
3answers
83 views
C#, .net, general programming architecture. GetType or Enum : Which is better? [closed]
Which do you think is better..
if (thing.GetType() == typeof(thisthing))
{
//do stuff for this type of thing.
}
Or give the objects an Enum property
if ...
-1
votes
3answers
62 views
Checking a string whether it is string version of oracle raw(16) type field [closed]
Is it possible to check a string in C#, whether it is string version of oracle raw(16) type data? For example, "5D03D47919127C4DBBD58AF69BF4D81A" is string version of a raw(16) type data.
0
votes
2answers
50 views
XSL condition to check if node exists
I want to check if in my XML exists node that has type attribute containing string type_attachment_.
Is it a correct way to check it?
<xsl:if test="count(*[contains(@Type, 'type_attachment_')]) ...
4
votes
2answers
36 views
Value of 1024 has one bit more in binary representation that value of 1
The output of following code:
System.out.println( Long.toBinaryString( Double.doubleToRawLongBits( 1 ) ) );
System.out.println( Long.toBinaryString( Double.doubleToRawLongBits( 1024 ) ) );
Is:
...
0
votes
3answers
70 views
For valid DateTime(Error shows string was not recognized )
I am trying to convert my string formated value to date type with format dd/MM/yyyy. It runs fine but when I enter fromdate(dd/MM/yyyy) in textbox its fine and todate(dd/MM/yyyy) in textbox then it ...
0
votes
0answers
54 views
“…cannot be resolved to type” error message; no method suggestions in Eclipse
Ok guys I've got a question that for the life of me I cannot get figured out. I'm using Eclipse, and I've got the Android ADT pluging all installed, the program configured with the Android SDK path, ...
-3
votes
2answers
67 views
Can I modify the type of an object in python
specifically I want to change a StringType to a NoneType. I know how to use int() and str()
to convert between IntType and StringType, but I can't find a similar solution for NoneType. Is there a ...
3
votes
1answer
115 views
Convert between any two primitive types in Java
In Java, would it be possible to implement a function that would take an object as input, and then convert the object to a type that is specified as a parameter?
I'm trying to implement a ...
3
votes
2answers
187 views
structs, enums, classes, interfaces, anything else?
I was pondering of this while I was writing some helper functions dealing with reflection. Is there anything else besides classes, structs, enums and interfaces in C#? If I write a function that ...
0
votes
1answer
14 views
wordpress custom taxonomy display in post edit screen
I have installed the Custom Post Type UI plugin, and created a new CPT called 'Holidays'.
I then created a custom taxonomy called 'Type'.
Fine so far and both appear where they should in the menu.
...
0
votes
1answer
59 views
Could not load type from assembly
for avoiding the duplicate codes, I wrote a method, which I pass a string(ClassNameString) as parameter into it, and use it to generate 2 things, one is the a url for WebClient, and one is a Class ...
3
votes
2answers
78 views
Do I have to use #include <string> beside <iostream>?
I started learning C++ and I read a book which writes that I must use the <string> header file because the string type is not built directly into the compiler.
If I use the <iostream> I ...
-2
votes
2answers
50 views
Comparing elements in two string arrays
I am attempting to compare elements in two different string array. Why can't I just use simple > or < comparisons? I am also trying to use convert a string a to a char like so
chara = ...
5
votes
4answers
107 views
Return one of two types of same typeclass
I have the following type class
class MyClass c where
aFunction :: c -> Bool
and two instances for two different data types
data MyDataType1 = MyDataType1
instance MyClass MyDataType1 where
...
1
vote
1answer
43 views
How to tell what type the DynamicImage loaded by Codec.Picture is
I am trying to load a PNG using the JuicyPixels library and I am able to do this successfully but I then can't figure out what type the underlying image is. In the library the DynamicImage is defined ...
0
votes
1answer
50 views
How to set the variable type in PHP
I created a class MySQLConnector with the field connection. I have a connect function that can set the $this->connection variable:
public function connect($host, $user, $password, $database)
{
...
2
votes
1answer
54 views
Pattern matching refuses to recognize member type (value X is not a member of _2)
In the following situation Scala seems to not acknowledge the type of system:
sealed trait Bar[S] {
def system: S
}
trait Foo { def bar(): Unit }
trait FooBar extends Bar[Foo]
If I'm not ...
1
vote
1answer
57 views
Overlapping instance in haskell
I'm reading code of the HList library. There is an HBetween class which is a type level function taking a HNat n and return a list of HNats forming a range [HZero, n). I want to implement an other ...
1
vote
1answer
63 views
How come assigning this obvious wrong type does not give a compiler error?
I'm currently in the process of trying to write a tree data structure. I was lead down this path after trying to create an iterator for my original data structure, and then learning about the STL ...
0
votes
6answers
80 views
C# Override an abstract class' function with a different one with a “Class Type” return type
I am trying to create a class based on an abstract class and overwrite a function contained in the base class with another one that has a return type of "T" which is a type passed by the class.
e.g:
...
1
vote
1answer
96 views
Pass concrete object type as parameter for generic method
I have an API using generic method as follow
public static class DataProvider
{
public static Boolean DeleteDataObject<T>(Guid uid, IDbConnection dbConnection)
{
// Do something ...
0
votes
0answers
28 views
JPQL polymorphism, TYPE operator syntax error
I have a Article class which is extended by Recipe and Review classes and when I want to get just the article class using the TYPE operator like this,
getEntityManager().createQuery("SELECT e FROM " ...
3
votes
4answers
122 views
How to access fields declared inside anonymous object without reflection?
It's possible to make anonymous classes have new fields in Java:
class A {
public static void main(String[] args) {
Object o = new Object() {
public int x = 0;
{
...
2
votes
2answers
101 views
Haskell: Using RankNTypes to fold a record constructor
import Data.ConfigFile
data Test = Test
{ field1 :: Int
, field2 :: Bool
, field3 :: String
} deriving (Show)
whatMyConfigLooksLike =
[ ("field1", "5")
, ("field2", "True")
, ...
2
votes
5answers
110 views
Is it typical programming practice to put the asterisk in the pointers right before the name? [duplicate]
I've been doing this for a while:
int* myIntPointer;
string* myString1,* myString2;
But I've noticed a lot of people do this:
int *myIntPointer;
string *myString1, *myString2;
Which one is more ...
0
votes
1answer
36 views
Oracle - How do I add a column and set the datatype
I am not having much luck with this. I am creating a new table and adding columns with a default value - the table is defaulting column datatypes to CHAR 7, but this last column needs to be CHAR 30. ...
-4
votes
1answer
39 views
PHP riddle about variable type [closed]
<?php
$x = ?
if ($x == "1") print "1";
if ($x == "2") print "2";
if ($x == "3") print "3";
?>
What must be the $x to print output "123" ?
You may assign $x value only once.
0
votes
0answers
75 views
Implementing is_convertible trait for function and array types
I have (thanks to @Xeo) a relatively simple is_convertible implementation:
template<typename From, typename To>
struct is_convertible
{
private:
static void foo(To);
template<typename ...
2
votes
1answer
45 views
How to find types that are direct descendants of a base class?
I need to get all types of an assembly that inherits some base class but only the first descendants. For instance if I have:
class Base
{
}
class FirstClass : Base
{
}
class SecondClass : ...
1
vote
2answers
37 views
Detect data type while using fetch_array with MySQLi
while fetching an array with MySQLI in a way such that
$sql = <<<SQL
SELECT *
FROM `users`
WHERE `live` = 1
SQL;
if(!$result = $db->query($sql)){
die('There was an error ...
1
vote
1answer
111 views
Understanding this function that returns Type object
I got a cool method here to check if a type is derived from another. While I was refactoring the code I got this chunk GetBlah.
public static bool IsOf(this Type child, Type parent)
{
var ...
0
votes
5answers
75 views
How can I use a template in C++?
I wish to use a template that has a default parameter l in class A, but the program produces errors:
class B {
public:
B(){
...
}
}
template <int l = 1>
class A {
public:
...
0
votes
5answers
58 views
Accept different types in python function?
I have a Python function that does a lot of major work on an XML file.
When using this function, I want two options: either pass it the name of an XML file, or pass it a pre-parsed ElementTree ...
-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 ...
1
vote
2answers
45 views
Cast boxed object to typeof(object)
I have the following POCO classes
public interface IObject
{
Guid Uid { get; set; }
}
public class Boo : IObject
{
public Guid Uid { get; set; }
public String Name { get; set; }
}
...
12
votes
2answers
282 views
How to design a monadic stack?
how do you design and build your monadic stacks? For the first time I need to build a monadic stack (using transformers) to solve a real world problem, but I'm not thoroughly sure in which order stack ...
1
vote
0answers
58 views
incompatible types when assigning to type ‘float[4]’ from type ‘float’ in c [duplicate]
I'm trying to copy values from an array of floats to a 4x4 floats matrix but keep getting this annoying error "incompatible types when assigning to type ‘float[4]’ from type ‘float’" please help me...
...
0
votes
1answer
119 views
How should I type cast void *?
I am learning C. I need to define a function to type cast the value of void * to the desired type. I'm not sure if I fully understand what I need to do. Here is my attempt. Can someone take a look ...
0
votes
2answers
77 views
Get value of CheckBox in GridView, Bit Datatype, asp.net
I am beginner and question or syntax may be silly.
I have drawn a grid view having based on a SqlDataSource query.
Converted a status field into Bit.
a checkbox is automatically created.
now how ...
1
vote
4answers
79 views
Subclasses of generic types in Java
When I have for example an interface Drivable and a class Car which implements that interface. If I make a class with generic type Garage<T extends Drivable>, is it possible to make a new ...
1
vote
1answer
56 views
Declaration is incompatible with type
header file:
#ifndef H_bankAccount;
#define H_bankAccount;
class bankAccount
{
public:
string getAcctOwnersName() const;
int getAcctNum() const;
double getBalance() const;
virtual ...
1
vote
2answers
94 views
setTitle with IO String results in type error
I am trying the set the title of a web page to a string containing the current year, like this:
getCurrentYear :: IO String
getCurrentYear = do
now <- getCurrentTime
let today = utctDay ...
2
votes
1answer
137 views
delphi - how to get type of enum
I know how to get enum value from integer value, and I have this code
function GetEnumValue(intValue:integer):TMyType
begin
if(ordValue >= Ord(Low(TMyType)))and(ordValue <= ...


