Casting is a process where an object type is explicitly converted into another type if the conversion is allowed.
-2
votes
1answer
31 views
Python join 2 char into the same short
I would like to do 2 char into a short.
I want to do that (c syntax):
short var = (msg[4:5]<<8) | (msg[5:6])
algo:
ord(msg[4:5) = 105 -> 0b1101001
ord(msg[5:6) = 135 -> 0b10000111
...
0
votes
0answers
17 views
Store and Retrieve Linq query From Session
I stored a query in session. As you know this query converted to object. i want use result of this query in somewhere and need to use WHERE on it.
var FacilityQuery = from O in db.Owners
...
0
votes
3answers
75 views
Cast to ArrayList
I've stored an ArrayList in a Map and I'm trying to get this ArrayList back:
//init map with data: Map<Integer, ArrayList<MyObject>>
while(iterator.hasNext()) {
Entry entry = ...
1
vote
4answers
43 views
Cast a variable to a Type and call Methods
How would I go about invoking a method call for an Object after casting it to a Type?
I have a KeyValuePair which stores the type of the object and the object itself. I then want to cast this object ...
2
votes
1answer
45 views
How to Cast the Class Object of a Generic Type to a Specific Instance of that Type
I have a generic interface, lets call it GenericInterface<T>. I need to pass the class object of that interface to a method that expects (specified through another type parameter) a specific ...
1
vote
4answers
83 views
Java & Casting generic object
Let's imagine :
public class Test
{
class A
{
private String name = "toto";
public String getId()
{
return name;
}
}
class B
{
int id = 99;
public String getId()
{
...
0
votes
4answers
52 views
Convert object to integer [closed]
Convert object to integer in PHP
I want to round figure the value of $row->getValue(); . I used following two functions for that - -
round(x,prec);
intval(x);
But both function give error
...
-3
votes
1answer
39 views
How can i avoid type juggling [closed]
Please refer Link: http://php.net/manual/en/language.types.type-juggling.php"
<?php
$foo = "0"; // $foo is string (ASCII 48)
$foo += 2; // $foo is now an integer (2)
$foo = $foo + 1.3; // $foo ...
0
votes
1answer
28 views
AccessViolationException when trying to put managed data into glTexImage3D
I have an error when trying to read some data into an opengl Texture. My error is the following:
A first chance exception of type 'System.AccessViolationException' occurred in libCoin3D.dll
It ...
1
vote
1answer
56 views
Dynamic type casting to a generic list of an internal type
I am using a third party API and I need to access a private field ("_fieldOfB") of an internal field ("_fieldOfA"). The example below illustrates the composition. The field I am looking for is a List ...
0
votes
1answer
24 views
Issue with cast {reshape}
I have my trouble with casting this dataframe. I'd like to have the frequencies of species (using newname) across main_habitat and muncipality (munc), with the main_habitat and newname in rows and all ...
1
vote
2answers
44 views
Casting an inherited class back to the base class
What happens to the data stored in the fields of a child class if and instance of that child class is cast back to the inherited class? And how does this work in memory?
public abstract class ...
0
votes
1answer
37 views
Implicit pointer cast in parameter and argument of functions
If 2 function definitions are:
void func(struct Node *arg){...}
void func2(void *arg){
func(arg);
...
}
but they are called like:
struct Node *node = (char ...
1
vote
0answers
12 views
zeroc Ice serialize Sequence of non-primitives
ZeroC Ice serialization seems pretty easy for sequences of primitives or buildin types:
out = Ice::createOutputStream(communicator);
vector<Ice::Byte> data = ...;
out->write(&v[0], ...
2
votes
1answer
54 views
Is it possible to avoid overhead while using boost_any?
I'd like to use boost::any as a universal type to store in a container and to pass to different functions. But inside these functions I always know the real type, so in runtime I don't need any type ...
0
votes
2answers
64 views
python cast object to int
I am using the numpy module to retrieve the position of the maximum value in a 2d array. But this 2d array consists of MyObjects. Now I get the error:
TypeError: unorderable types: int() > ...
0
votes
1answer
33 views
Why does JavaScript insist on converting floats to integers?
I noticed that if I do in JavaScript:
var dict = { "foo" : 1.0 };
when retrieving dict I will get:
{ foo : 1 }
What is the rationale behind this? And what is the preferred way of avoiding it (I ...
0
votes
1answer
23 views
Gson library, cast JsonObject to MyObject
Im currently using this code to create Objects out of JsonStrings from my Server:
JsonParser parser = new JsonParser();
JsonObject myJsonObject = (JsonObject) parser.parse(myInputStreamReader);
...
0
votes
0answers
17 views
dynamic casting to unknown derived class
What is the best way to be able to cast a dynamic object to an unknown object type.
public abstract class VehicleBase{ }
public abstract class Car : VehicleBase { }
public abstract class Truck : ...
7
votes
1answer
96 views
Casting a generic superclass to a subclass
This is my first SO question, I hope it's useful enough, both for readers and myself! I've googled and ducked the world around with this for the past two days.
I have abstract model and storage ...
1
vote
2answers
37 views
Binary writing (var/object)
In my program, I will get a var object at run time and I would like to write it to a binary file, but I couldn't write var variable by using BinaryWriter. It gives a compile error that cannot convert ...
1
vote
2answers
67 views
What is the function of “(ClassName *)”
I have seen code statements that use '(ClassName *)' to reference certain objects, like in UITableViewCell *myCell = (UITableViewCell*)[self.view viewWithTag:1];.
I have no idea what this means or ...
2
votes
3answers
72 views
The sizeof several casts
Why does the function sizeof not return the same size when its getting used on the struct itself?
I need to cast it because of a winsock program that im working on.
Thanks for any help, true.
...
0
votes
2answers
54 views
Should casting from ``real`` to ``double precision`` in FORTRAN be affected by the compiler?
I have a FORTRAN code that I need to run on a server. I noticed that the results are a little different between the two machines. Looking into it, I learned that the difference rise from a function ...
0
votes
1answer
21 views
Casting date in Talend Data Integration
In a data flow from one table to another, I would like to cast a date.
The date leaves the source table as a string in this format: "2009-01-05 00:00:00:000 + 01:00".
I tried to convert this to a ...
1
vote
5answers
70 views
Converting String List into Int List in SQL
I have a nvarchar(MAX) in my stored procedure which contains the list of int values, I did it like this as it is not possible to pass int list to my stored procedure,
but, now I am getting problem as ...
-3
votes
2answers
33 views
Cast a string into datetime in Oracle
How can I cast this string date to datetime in oracle.
Sun Apr 21 21:32:13 IRDT 2013
"IRDT" is the time zone and its equal in all records.
0
votes
1answer
24 views
Cast IA5String to a String
I wrote this code to get an Int and a String with the ASN.1 generated classes. It work fine with Integer but I don't understand how to cast the IA5String to a String.
ServerFirstResponse response1 = ...
0
votes
1answer
52 views
Method with (void)sender as the first line [duplicate]
What does the (void)sender; do in following code? I am not able to understand what the use of that expression is.
- (IBAction)signIn:(id)sender {
(void)sender;
[self ...
5
votes
2answers
61 views
MySqlDateTime in LINQ Query
I am trying to do a comparison of a MySqlDateTime object to another MySqlDateTime object, each from two different tables. I am trying to do all of this inside a LINQ query, ex:
var ...
2
votes
3answers
71 views
sign extension in C, char>unsigned char
When i was reading K&R, i am confused in this code:
#include "syscalls.h"
int getchar(void)
{
char c;
return (read(0, &c, 1) == 1) ? (unsigned char)c : EOF;
}
It is said unsigned ...
0
votes
2answers
61 views
Return dynamic cast Activity
I'm working on a testing lib for Android.
What I want to do is to create a method that creates an activity from it class name and return the activity instance.
For example, I receive the class name ...
4
votes
3answers
129 views
What is the difference between '*(<type> *) &x' and 'x'?
What is the difference between
int i = 123;
int k;
k = *(int *) &i;
cout << k << endl; //Output: 123
And
int i = 123;
int k;
k = i;
cout << k << endl; //Output: 123
...
1
vote
2answers
112 views
C# can not using **as** to cast base class to derived class
class Building {
}
class Home: Building {
}
private List<Building> buildings;
public T[] FindBuildings<T>() {
return buildings.FindAll(x => x is T).ToArray() as T[];
}
...
0
votes
3answers
54 views
Array returning memory allocation instead of value in Java
Consider a simple case like this one :
public static void array()
{
String myString = "STACKOVERFLOW";
int [] checkVal = new int[myString.length()];
for(int i=0; ...
1
vote
1answer
33 views
write pointers to pipe, are there any strict aliasing or pun type issues?
I need to create many FIFO queues in a program, which is used for communication between threads in the same process.
I think I can use pipe() for this purpose, because in this way, I can use select ...
14
votes
2answers
139 views
Different casting operators used by different compilers
The following C++ program compiles without warnings in all compilers I have tried (gcc 4.6.3, llvm 3.0, icc 13.1.1, SolarisStudio 12.1/12.3):
struct CClass
{
template<class T>
operator T() ...
-1
votes
2answers
50 views
Cast from void * produces Segmentation Violation error
I'm using the Gnu Scientific Library to implement a module in my program that computes integrals numerically.
The functions are based on the example that can be found on the GSL website in Numerical ...
0
votes
4answers
68 views
Warning in C: assignment makes integer from pointer without a cast
I keep getting this error when compiling my program. This is just a small part of my code, so if needed I will provide the rest of the code. Any ideas on why this is occuring?
void strip_quotes(char ...
-1
votes
2answers
67 views
How can explain the F# type casting output?
I had a problem about F# type casting. Here is the code.
type Person() =
abstract member SayMe : unit -> unit
default u.SayMe() = printfn "Hi, I am a person."
type Student() =
inherit ...
2
votes
1answer
38 views
Passing a class type to a method, then casting to that type?
I'm still pretty new to Java, so I might be missing something obvious here.
I have the following code that I use to pick class types from a list of all my entities:
public Array<?> ...
1
vote
2answers
79 views
Casting a C# DynamicObject to an arbitrary type
I am trying to write a nice consumer API for a convention-based config binder in c#. ConfigManager.GetSection(...) returns an object, so I want to return a dynamic object, that when cast to the ...
0
votes
5answers
46 views
Pointers typecast
I have the followig code and I want to know why I have the following output:
#include <iostream>
int main() {
double nValue = 5;
void *pVoid = &nValue;
short *pInt = ...
7
votes
5answers
216 views
Why printf(“%s”,(char[]){'H','i','\0'}) works as printf(“%s”,“Hi”), but printf(“%s”,(char*){'H','i','\0'}); fails? [duplicate]
I really need help on this.It has shaken my very foundation in C.Long and detailed answers will be very much appreciated.I have divided my question into two parts.
A: Why does ...
1
vote
1answer
31 views
Record in SQL Server table causing a error - how to find the record?
I created a query to take the birthdate of a user and change the year to the current year (don't want to display the actual birth date)
CAST(
CAST(YEAR(GETDATE()) as varchar) + '-' +
...
0
votes
4answers
104 views
conversion from unsigned char* to const wchar_t*
I am using the following code to convert a string from unsigned char* to const wchar_t* . The error I am getting is that only a few words are being converted properly while the rest is garbled value.
...
0
votes
2answers
32 views
how to change timespan variable to a integer type?
I'm trying to convert timespan variable into an integer variable using 'parse'. I get an error that says:
Format exception was unhandled: Input string was not in correct format
This is the code ...
1
vote
4answers
39 views
php cast string to either int or float
I'm looking for a function that would cast a numeric-string into either integer or float type depending on the content of the string, e.g. "1.23" -> float 1.23, "123" -> int 123.
I know I can use ...
0
votes
3answers
58 views
Casting a buffer with larger size structure
I am casting a data buffer to large size structure pointer. Will it cause any issue? I tried the codes below on Visual Studio, no warning or error is found.
#include <iostream>
using namespace ...
0
votes
3answers
67 views
Strange bahavior when converting float to int
I have a class reading csv file containing numerical records with no more than two digits after the decimal point.
int ReadCellWithFloat(int cellNumber, int multiplier) throw (FSByFieldException)
{
...




