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
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 ...
-2
votes
2answers
49 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 = ...
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) { ...
-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.
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; } } ...
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 ...
3
votes
2answers
80 views

How to make a similar cast like 1LL with any other type?

Does this make any sense? static_cast<long long>(1) == 1LL static_cast<float>(1) =? 1F Is there a short way of making the casting for other types such as float? Thank you very ...
27
votes
3answers
503 views

C# type conversion inconsistent?

In C#, I cannot implicitly convert a long to an int. long l = 5; int i = l; // CS0266: Cannot implicitly convert type 'long' to 'int'. An explicit conversion exists (are you missing a cast?) This ...
0
votes
4answers
75 views

How to cast pointers-represented 2D array back to 2D array in C++?

I have a variable in class declared as compile-time constant with known size: static const int array[5][5]; // constants initlialised in another place And a function that returns it virtually: ...
0
votes
1answer
30 views

Cast Exception when performing LINQ on IEnumerable

Let's say I have two classes, class A { } class B : A { } I have a method which accepts a parameter foo of type IEnumerable<A>; void AMethod(IEnumerable<A> foo) { } but instead pass ...
-1
votes
4answers
107 views

Why Doesn't Java Allow Casting Boolean -> Int?

I was wondering why Java doesn't allow casting from a boolean to an int, like so: boolean foo = true; int bar = (int)foo; This can be done in one line of code, for example, bar = foo ? 1 : 0; ...
0
votes
1answer
31 views

WebSQL type casting columns

I have two tables with a common column which I am trying to join. How ever due to circumstances which I have no control over, one of the columns stores data as a string, the other as an integer. I ...
0
votes
1answer
94 views

Warning: cast to pointer from integer of different size

I wrote the following code: struct DVDARRAY { int length; pDVD* dvds; }; typedef struct DVDARRAY DVDARRAY_t; //... int main() { int i; char c; DVDARRAY_t* dvds; ...
2
votes
3answers
100 views

C# pass class as string and cast it from array

I have few nested classes like "BlueprintsManager.WorkingStandardBlueprint", and ArrayList that have instances of them. I would like to pass them to a method as a parameter, eg: private void ...
0
votes
1answer
81 views

How can I represent a certain number of seconds (minutes) with the type unsigned long long int in C++

I need to perform an operation for 64 seconds. Every 8 seconds I need to perform another operation. Since I need an extreme temporal precision I am using QueryPerformanceFrequency and ...
0
votes
3answers
71 views

Java (Implicit type casting): Does a unary operator affect the data type of the variables in operation?

While learning about implicit/ explicit type casting, I tired the following code: class Implicit { public static void main(String args[]) { byte a=10; byte b=20; ...
1
vote
3answers
182 views

C#, how to make an increment of int declared as object?

I have an external system which gives me an object value (I know that this value always a boxed integer type). I would like to increment it in the usual way: int value += otherIntValue, but I get an ...
2
votes
3answers
55 views

Convert a List to a given Type

I have the following List: public List<EntityBase> PossibleReplacements I also have a Type public Type type; type will contain a certain class type that inherits EntityBase (That's how my ...
1
vote
1answer
76 views

struct without typedef - cannot use in a pointer-to-member

I have a simple structure and I want a pointer-to-member c. I'm using MSVC2012 and if I don't declare the struct abc as a type definition (typedef), I can't use it.. how come? struct abc { int a; ...
4
votes
2answers
95 views

What does :: do in PostgreSQL? [duplicate]

I have seen :: in variety of places involving postgres code I have seen on the net. For example: SELECT '{apple,cherry apple, avocado}'::text[]; It seems to be some sort of cast. What exactly is :: ...
1
vote
2answers
138 views

How to solve “boost::bad_any_cast: failed conversion using boost::any_cast” when using boost program options?

//Using boost program options to read command line and config file data #include <boost/program_options.hpp> using namespace std; using namespace boost; namespace po = ...
0
votes
1answer
52 views

How is type resolution done?

I'm new to the Java world and I have some problems figuring out how Java decides which method to call when there is polymorphism. Can you help me figure out how it works with this example? I tried the ...
-1
votes
2answers
55 views

How to convert a String value to a given data type stored in another String?

Suppose I have a String variable 'value' and a string variable 'type'. I want to cast the data in variable 'value' to the type specified by the variable 'type'. Eg: String value = "3.14"; String type ...
0
votes
1answer
28 views

Casting to types that are know only at Runtime by their string names. C#

I've got a problem here. (C#) There's a collection in another assembly (I cannot change it) that takes a string as parameter and returns an object. Like: object Value = ...
0
votes
3answers
65 views

Is the construction unsigned long long permitted?

Is the construction unsigned long long permitted? And is there anything like unsigned long double?
-2
votes
4answers
52 views

Is there any way to declare the name of the variable then the type

I have enable to the user choosing the type of data he wants to use, for example if he wants to use long or double etc. I would like to declare first the name of the variable then set its type. Is it ...
3
votes
3answers
47 views

Java typecasting from extended

I have the following code: public static <T extends User> void addUser(String username, String passwordHash, Class<T> userClass, File usersDir) { T user = (T) new ...
0
votes
2answers
90 views

Specify object type of a returned array list dynamically

I have following class which takes an interface and execute some functions: public class MSSQLHandler { IMSSQLStatement statement; public MSSQLHandler(IMSSQLStatement statement) { ...
1
vote
1answer
242 views

JSON.NET deserialize to object with Type parameter

I have the following problem which I am unable to solve: I have different classes which all implement an interface named IProtocol. The are named, for now, SimpleProtocol, ParallelProtocol. I wanted ...
0
votes
3answers
32 views

Casting type and converting

What is the difference between these two methods? Both of them return the same type, which is float, but one use casting and the other does not. public class Para1 { public float method1(int z) ...
0
votes
2answers
45 views

Type casting/ conversion dilemma

I'm still only starting out in C++ and haven't dealt with much type casting yet. I was under the impression that the syntax is (type) (variables) however, this does not seem to work in this case. ...
1
vote
2answers
79 views

Type casting and pointers

I have a piece of code I am unsure on would very much appreciate a run down on its workings. The first bit is about type casting. Can someone tell me if I'm reading the following code correctly: ...
0
votes
1answer
30 views

C# Type casting or convertion

public class ExpiringDictionary<TKey, TValue> : IDictionary<TKey, TValue> { private class ExpiringValueHolder<T> { public T Value { get; set; } . . ...
1
vote
3answers
76 views

Typecasting for vector pushback operation in C++

I have two vectors std::vector<std::string> outputStack, operatorStack; At some point, I need to pop some elements out of one stack and push it into another stack. ...
1
vote
1answer
151 views

Umbraco Node.getProperty() types

I am setting up a new Umbraco site - this is the first time I have used Umbraco and was wondering how to get the generic properties for the node back as the type I set them as. For example, I have ...
2
votes
1answer
98 views

Adding an Int to a String in scala [duplicate]

I am having a little trouble understanding the rationale behind the following few pieces of scala code: We all know that 1 + 1 = 2 in the REPL. scala> 1 + 1 res0: Int = 2 If I type in "Abc" + ...
0
votes
1answer
153 views

C++ Type casting from double to const int does not work properly

I have a variable of type const int, but the parameters that it's dependent upon are of type double. When I try to cast this down from a 'double' to a 'const int', it doesn't work properly. For ...
1
vote
2answers
87 views

How do I convert a character to integer within a PostgreSQL (9.1) function?

I have this following code: BEGIN x := split_part(text, ',', 1); UPDATE albumphoto SET order = 1 WHERE idtable = 1 AND idx = x; END But my column table named idx is a numeric type, and the ...
-1
votes
2answers
57 views

Why java do not give error on returning an integer while the return type is long or double?

public double delhi(Integer a) { return (int)a; } In case you do not get it, look at the return type of the method
1
vote
1answer
223 views

C# Dynamic Casting with GetType()

I've read many posts trying to accomplish similar tasks but cannot find a proper solution to my problem. I'm trying to dynamically cast an object at runtime. (I know a lot of you are going to say it ...
0
votes
1answer
139 views

Scala 2.10 reflection: Creating an Array from a type

I'm having trouble digging through Scala's (somewhat sparse?) documentation on the new 2.10 release. I have a situation where I am reading data recursively from a source without type information. On ...
2
votes
3answers
329 views

Delphi Type Casting

I need a clarification on Delphi Type Casting I wrote an example with two classes: TClassA and TClassB, TClassB derived from TClassA. the code is as follows: program TEST; {$APPTYPE CONSOLE} uses ...
0
votes
1answer
72 views

What type to use for an array of JSON objects?

I have a WCF service that receives a JSON payload. For instance, a payload like this: { "a":"123", "b":"xyz" } Works well with the following service method signature: <OperationContract()> ...
1
vote
1answer
263 views

PostgreSQL ERROR: function to_tsvector(character varying, unknown) does not exist

This psql session snippet should be self-explanatory: psql (9.1.7) Type "help" for help. => select language, to_tsvector('english', 'hello world') from languages; language| to_tsvector ...
2
votes
3answers
84 views

Haskell Type errors (short code)

first I'd like to appreciate your time answering my question. First, please take a quick look at my code. You don't have to understand the code, just pay attention to the types. This return an error ...
0
votes
4answers
40 views

Moving implicitly typed variables to object initialiser

How can I modify the following code: var people = new[] { new { name = "John", surname = "Smith" }, new { name = "John", surname = "Doe" }, }; To not use the var keyword (so I can initialise ...
0
votes
3answers
117 views

Is there a way to avoid to convert number types in Scala? Should I use Numeric, Integral?

I would like to not to mind about type of numbers. All numbers could be treated as Double, but I would like to know the better scalaish way to use numbers just as numbers. This is just one example, ...
2
votes
1answer
257 views

javac “uses unchecked or unsafe operations” when the type is being specified

The following code: public void addGrillaListener(Stage stageToClose,Grilla listener) { GrillaHandler<WindowEvent> handy = new GrillaHandler<>(listener); if(stageToClose!=null) ...
-1
votes
4answers
426 views

How to convert a char array to a float array?

In order to train a classifier, it requires that the training data are specified using a set of float array. Unfortunately, the training data available to me are byte arrays (actually they are Ipp8u ...

1 2 3 4 5 7