Tagged Questions
0
votes
1answer
5 views
check variable type inside Jinja2 in Flask
The template file i created contains this:
{% if type({'a':1,'b':2}) is dict %}
print "Oh Yes!!"
{% else %}
print "Oh No!!!"
{% endif %}
Then Jinja2 responds by saying:
...
-4
votes
1answer
36 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
votes
2answers
45 views
I can't see generated random number
I wrote this script to combine more html file. I used the random fuction for a part of that. I see a strange thing...
@echo on
pause
CD "C:\Documents and Settings\Mauro\Documenti\Firme\ProvaMerge\"
...
1
vote
2answers
110 views
Int and Num type of haskell
I have below code to take the args to set some offset time.
setOffsetTime :: (Ord a, Num b)=>[a] -> b
setOffsetTime [] = 200
setOffsetTime (x:xs) = read x::Int
But compiler says "Could not ...
0
votes
4answers
70 views
Can you have a multiple-type variable declaration in Java?
I have multiple interfaces and a class that implements all of them. I want to call all the methods defined in these interfaces on an instance of the implementing class, but I don't want to declare the ...
1
vote
1answer
52 views
Hungarian naming convention: mixed type
I'm using the HNC in this way for variables in PHP: $p_nId. p stands for parameter, so the scope of the variable, n for the type (though PHP is loosely typed, it gives some structure), so numeral ...
0
votes
2answers
54 views
floatval returns 1 php error
I have a mysql table with float variables. I want to pass them to mongodb collection, but when i do it, php convert my float variables into string. I've tried to use this code to set variable type as ...
0
votes
2answers
65 views
How to check if a variable is of type “void” in Objective C?
Here is the case. I forgot to return nil at the end of a method and caused a bad access error in the following code.
- (NSString*) testWithRet{
NSString* ret = @"js";
//return ret;
}
...
...
1
vote
2answers
63 views
Python: reading line from file with different types of variables
Trying to analyze a 2 column (color number_of_occurances) .tsv file that has a heading line with a dictionary. Trying to skip the heading line in the most generic way possible (assume this to be by ...
1
vote
1answer
46 views
evaluation of a string variable with another string doesn't evaluate. ASP CLASSIC
i have a series of big forms, in many pages, so i have done some functions that should populate the form fields when someone update the page, the situation is like this:
<label class="radio ...
0
votes
3answers
65 views
Python Variable Additions without reset
Is there any type of variable that allows me to increase its value, without the memorized value being overwritten? Example:
def main():
var = 0
inc = input("Want to increase your variable?")
...
5
votes
5answers
110 views
What type has a variable containing a range to be?
A for loop can be done in Ada using a range with a start and an end point:
for I in 0..10 loop
(...)
end loop;
I know, it's possible doing the for loop using two variables describing the range:
...
0
votes
1answer
57 views
When should I use and not use register variables? Is there a drawback? [duplicate]
Possible Duplicate:
“register” keyword in C?
What if I declare almost everything as register variables? This will speed up my program yes? Or is there some sort of drawback. Cause I'm ...
1
vote
2answers
155 views
HTML5 Local Storage and Variable Types
I was just working on some tests for Local Storage in HTML5. Note I used Safari 6.0.2, as it seems many web-engines handle their methods different.
If I do this:
localStorage.setItem('subTotal', ...
0
votes
4answers
47 views
Double not storing proper value
The code that I have,
public static void main(String[] args) {
int x = 27;
int y = 5;
double z = x / y;
System.out.println(" x = " + x + " y = "+y +" z = "+z);
}
In the above code ...
0
votes
0answers
89 views
C++ Variable Type Container
I need some sort of container for carrying a bunch of objects. I'm creating a preliminary "scripting engine" of sorts, and the idea is that you wrap all your functions in classes. In each class, there ...
0
votes
3answers
30 views
Preserve variable type?
I have a problem that I need to solve.
I have an associative array, eg:
private $formData = [
"lastPrintedNumber" => 0,
];
I obtain this data from a text file with a function...:
$line = ...
0
votes
1answer
139 views
SAS macro changing variable type
I am building macro whitch generates empty table by my own structure from other table. How to change variable type?
example from my code:
`%let vname = ...
1
vote
3answers
126 views
How can i set isdigit() command as a variable?
I'm new to python but I caught on to the basics pretty quick and decided to start trying to make a program while I'm still learning, since I learn best by actually doing things.
So I'm making a ...
0
votes
1answer
94 views
Storing Variable in C
I am having some challenges with a basic concept in C. Help would be much obliged.
I went ahead and annotated the code with the explanation of the code as well the question I am trying to ask there as ...
0
votes
5answers
532 views
PHP: How to get type of variable from an input field
I need answer for this type of question. Please I need to get type of variable from HTML input field and to echo that type of $var.
From this form I need to check what type of data is entered. Is it ...
1
vote
6answers
209 views
Why woulda programming languange need such way to declare variables?
I'm learning C and I kinda know how to program on Mathematica.
On Mathematica, I can declare a variable simply by writing:
a=9
a="b"
a=9.5
And it seems that Mathematica understands naturally what ...
2
votes
4answers
164 views
How does casting to “signed int” and back to “signed short” work for values larger than 32,767?
Code:
typedef signed short SIGNED_SHORT; //16 bit
typedef signed int SIGNED_INT; //32 bit
SIGNED_SHORT x;
x = (SIGNED_SHORT)(SIGNED_INT) 45512; //or any value over 32,767
Here is ...
0
votes
3answers
174 views
python type error: a is undefined
Python newbie here. I am writing a program to count how many times a substring is a string, but keep receiving the error message: TypeError: a is undefined. I have looked at /googled similar threads ...
1
vote
4answers
81 views
What does a variable to a struct contains?
Say I have this simple program
#include <iostream>
using namespace std;
struct teststruct
{
int n;
long l;
string str;
};
int main()
{
teststruct wc;
wc.n = 1;
wc.l = 1.0;
...
1
vote
3answers
88 views
part names of variable declaration
I am trying to extract debug information from a compiled C program with C#, and need to store the global variables.
If I have the variable:
const unsigned char * volatile MyVariable;
the name of ...
6
votes
2answers
1k views
ColdFusion: Get variable type
The ColdFusion <cfdump /> tag is giving me much less information than the PHP function var_dump().
Is there any other possibility in CF to find out of what type (integer, string etc.) my ...
0
votes
5answers
144 views
Binary How The Processor Distinguishes Between Two Same Byte Size Variable Types
I'm trying to figure out how it is that two variable types that have the same byte size?
If i have a variable, that is one byte in size.. how is it that the computer is able to tell that it is a ...
1
vote
3answers
772 views
Creating generic variables from a type - How? Or use Activator.CreateInstance() with properties { } instead of parameters ( )?
I'm currently using Generics to make some dynamic methods, like creating an object and filling the properties with values.
Is there any way to "dynamically" create the Generic without knowing the ...
1
vote
0answers
80 views
How to modify type of a local variable in java byte code
I am rewriting bytecode using Javassist. I need to modify type of some local variables to object. How can I access local variables and change their types using Javassist?
Thanks.
-4
votes
4answers
457 views
in C, how do I store a String type AND an int type in the same variable?
I want to store an integer and a String in a variable called X and then display it.
int X;
printf("enter a number or a name")
scanf("%d", &X);
printf("%d", X);
Obviously I would need to ...
0
votes
1answer
21 views
Accessing variables (of some class) inside a PHP class
I implemented a class like this:
class ClassRoom
{
public $desired_connection; // variable of type DesiredConnection
//Constructor
public function __contruct()
{
...
4
votes
1answer
244 views
Does V8 detect int variables and handle them more efficiently?
This is more about Node.JS, which uses the V8 engine. This is the JavaScript engine that is also used for Google Chrome.
I hear about V8 being really fast, not just for Node, but for browsers too. ...
4
votes
2answers
87 views
Java: Get the class of a variable
For debugging purposes, I would like to display the type of a specific variable in Java, e.g.:
String s = "adasdas";
System.out.println( SOME_MAGIC_HERE(s) );
And get:
String
1
vote
3answers
240 views
What type do arithmetic operators (+ - / *) have in PHP?
What type do arithmetic operators (+ - / *) have in PHP? I have such situation:
$argX= "1";
$argY = "2";
$operator = "+";
I want to add up two arguments using the operator in the variable. Smth ...
-5
votes
2answers
415 views
Java compound assignment operator += [duplicate]
Possible Duplicate:
Java += operator
I know the difference between i = i+m, and i += m. The later does type casting when i and m are of different types. For example,
int i = 2;
long m = ...
2
votes
1answer
1k views
Applescript- How do I determine a variables data type? How to convert to string?
I have two questions...
Here is a really simple example script which causes an error:
System Events got an error: Can’t make item 1 of every application process whose visible = true into type ...
-1
votes
4answers
57 views
Data values and types
Given:
int x = 10;
double d = -3.0;
boolean f = false;
1.
Why does the following remain a double after it is cast as an int... For the second one also, why does it output a float when defined as a ...
3
votes
4answers
499 views
is it possible to make function that will accept multiple data types for given argument?
Writing a function I must declare input and output data types like this:
int my_function (int argument) {}
Is it possible to make such a declaration that my function would accept variable of type ...
3
votes
4answers
257 views
Reassign or replace a variable's type in C#
This is something I would need to do to create a flexible logic structure that I need for a class.
The class is like this:
public class myclass {
public Action myaction;
public int actionparams;
...
1
vote
5answers
148 views
why doesn't instanceof work the way it sounds?
In Java, the instanceof operator will only return false if comparing null. If you test a reference variable that isn't of the required type, the program fails to compile.
Does this operator ...
-1
votes
1answer
1k views
Pascal ReadLn multiple var types
My problem looks like this. I got a file with data(input) "text text number number" on each line, I need to get data from it using ReadLn(myfile, string, string2, real1(or double), real2(or double));, ...
5
votes
2answers
150 views
GHC rejects ST monad code as unable to unify type variables?
I wrote the following function:
(.>=.) :: Num a => STRef s a -> a -> Bool
r .>=. x = runST $ do
v <- readSTRef r
return $ v >= x
but when I tried to compile I got the ...
0
votes
1answer
119 views
Variable declared as Node *&ptr = root->mRight
I am trying to understand what that means
I know that declares a variable to an address of type node and that & gets the address of a variable. I also know that in a function parameter it is a ...
0
votes
3answers
249 views
Changing Variable Type on RunTime
Today i had a challenge with my College and i gaved up ,no idea how to achieve it .
Is there a way to declare a String ,as Constant and on Load Event maybe using Reflection to change String to ...
0
votes
1answer
159 views
AS3 flashing dynamically appending movieclip names to goto functions
I have a virtual on screen keyboard for a touch screen interface.
I get the name of the key (Q, W, E, etc) by calling event.currentTarget.name
Now each button is a movie clip with a small animation ...
0
votes
2answers
43 views
mysql query behaves differently when value is quoted
MySQL 5.0, Acct is a varchar field, so why is the query behaving differently?
select *
from acct_codes
where Acct = 10100;
/* returns a record */
select *
...
2
votes
3answers
1k views
Can't compile with void variable in c
"test.c"
int main () {
void a;
return 0;
}
I use gcc to compile but it gives me an error:
error: variable or field ‘a’ declared void
From what i read: ...
0
votes
1answer
431 views
C++ typename as variable
Suppose I have a template class MyClass.
Is it possible to store the type of the template as an variable of the class? If so how? I'm curious if it's possible to do something like this.
Template ...
1
vote
4answers
154 views
Why C# Need Integral Types already it has “Var” keyword?
That can be silly question but I really don't know the reason.
// i is compiled as an int
var i = 5;
// s is compiled as a string
var s = "Hello";
// a is compiled as int[]
...





