The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
3answers
89 views

Variable type used in Microsoft Standard Calculator

I am fairly new to programming and have recently remade the microsoft "standard" calculator using C# (winforms) but wanted to ask a question regarding the variable type that microsoft use in their ...
1
vote
1answer
33 views

STATA: Reading in data and specifying var type

I am importing a dataset into STATA with a lot of variables (~250), a majority of which need to be read into STATA as strings, so I was wandering if instead of writing a painfully long dictionary ...
-3
votes
1answer
59 views

How to initialize a class that manages a buffer whose data type is passed at instantiation.

I need to create a Buffer class whose type of variables that constitute the managed buffer is decided at istantiation time. Thus, I need a buffer class of long int bytes, 30 elements long, I will ...
1
vote
3answers
153 views

Switching between float and double precision at compile time

Where should I look at if I want to switch between float and double precision at compile time. Its like, if user wants everything in float instead of double precision how I can maintain this ...
0
votes
0answers
170 views

Stata merging with different variable types?

So I am trying to merge 14 different datasets together. They have many overlapping variables, which, from what I understand, are automatically "merged" even if I don't specify them as key variables. ...
0
votes
1answer
57 views

why are brackets used in this assert_equal statement

In the book Agile Web Development with Rails, they're teaching how to write test unit cases: test "product price must be positive" do product = Product.new(title: "By Book Title", ...
2
votes
5answers
116 views

c is there a way to test type of variable? or overload methods?

i need to pass an int or a string into a push function for a stack. normally i would just overload the function and have one that takes in a string parameter and one that takes in an int parameter so ...
0
votes
2answers
66 views

createPattern not returning as expected

I am getting a TypeError on the variable "pattern" and my script does not execute past the marked break point. I am using the JCanvas and JQuery and all dependencies are in place. What is the reason ...
0
votes
3answers
191 views

Haskell: expression of “generic” type

In a similar problem as the one showed in this question, is it possible to have a Haskell expression of "generic" type a? Something like, myExpression :: a I'm new to Haskell, but from what i've ...
0
votes
1answer
177 views

Using structs for Range variable type

I am trying to make a struct for a range variable (minimum, maximum) with a few members like to know if between values. Right now my struct looks like this: public struct NumRange { float ...
0
votes
2answers
1k views

Local Variables, Object references and it's memory allocation

I have the following block of code: class Student{ int age; //instance variable String name; //instance variable public Student() { this.age = 0; name = "Anonymous"; } ...
3
votes
2answers
127 views

Set variable type for a c++ class variable during instantiation

I have a c++ class such as the following: class some_class { protected: decide_later some_variable; public: void some_random_function(); }; void ...
0
votes
2answers
69 views

Unable to set variable type in PHP

Let's say I have an array like this: $array = array ('1','2','3','4'); And I want to add parts of given string (even it consists of numbers) to the array if it isn't already exist in array. For ...
0
votes
4answers
136 views

All possible types of a variable in python

How can we know all possible type of a variable? Consider the following example, n = int(raw_input()) if n<50: a = 5 elif n<100: a = 6.8 else: a = 'abc' print ...
1
vote
2answers
201 views

JavaScript Integer Leading to NaN

I have JavaScript that basically looks like the following function a() { b(1); } function b(myNumber) { c(myNumber); } function c(myNumber) { var calculation = 5 * (myNumber - 1); ...
2
votes
4answers
103 views

Why does PHP assume this variable is a string when it hasn't been used anywhere yet?

I have two classes: class BaseResource { public $url; protected $relativeUrl; protected $parentUrl; public function BaseResource($relUrl, $parentUrl) { $this->relativeUrl = ...
1
vote
2answers
397 views

Perl numeric variables

Perl and I disagree as to whether a variable is a number or not. I'm wrong, of course, but why? my $bytes = 0; # . . . $bytes = $bytes + length($text); # . . . my $MB = $bytes / 1048576; my $string ...
12
votes
2answers
4k views

How can I check if a var is a string in JavaScript?

How can I check if a var is a string in JavaScript? I've tried this and it doesn't work... var a_string = "Hello, I'm a string."; if (a_string typeof 'string') { // this is a string }
3
votes
4answers
458 views

Does textbox save an all number text as a long or string?

I have a brief discussion with my teammate regarding this. He says, if I enter a number in textbox, and try to use the value later on using textbox.text or val(textbox.text), I will not need to parse ...
3
votes
1answer
126 views

Python IDE and gathering runtime statistics (variable types and other)

It occured to me after reading this blog post and watching related video: http://steve-yegge.blogspot.com/2008/05/dynamic-languages-strike-back.html Is there any Python IDE that gathers Python ...
0
votes
2answers
928 views

how do I declare an integer variable of 1024 bits in length?

I'm trying to write an algorithm for a number theory/computer science merged class that can factor large numbers in better than exponential time. I am using the g++ compiler on a 64 bit machine but ...
0
votes
4answers
100 views

Checking if an argument a string

I have a JavaScript function that uses document.getElementById(). I want to upgrade it to be able to use jQuery selectors ($(this).parent().find("blah")), however it needs to be able to use the ...
1
vote
1answer
147 views

Unify variable types of array elements

After hours of debugging, I found an error in one of my scripts. For saving different event types in a database, I have an array of unique data for each event that can be used to identify the event. ...
2
votes
6answers
266 views

How can I force Java to accept a conditional type for one of the parameters of a method call?

This question is hard to phrase, so I'm going to have to use some code samples. Basically, I have an (overloaded) method that takes 3 parameters, the last of which I overloaded. As in, sometimes the ...
19
votes
5answers
24k views

Declaring Variable Types in PHP?

I was trying to get my Netbeans to autocomplete with PHP, and I learned that this code is valid in PHP: function blah(Bur $bur) {} A couple of questions: Does this actually impose any limits on ...
175
votes
33answers
72k views

C#, int or Int32? Should I care?

From my understanding int and Int32 are the same thing in C#, but I've read a number of times that int is preferred over Int32 but without any reason given. So, what is the reason? Should I care?
1
vote
2answers
190 views

Variable Types

I know that I can do something like $int = (int)99; //(int) has a maximum or 99 To set the variable $int to an integer and give it a value of 99, Is there a way to set the type to something like ...