Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

116
votes
35answers
46k 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?
8
votes
6answers
10k 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 ...
6
votes
2answers
99 views

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

Well, the question doesn't need more explanation: 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 ...
3
votes
4answers
233 views

Does C# 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
84 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 ...
2
votes
4answers
58 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 = ...
2
votes
6answers
199 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 ...
1
vote
2answers
94 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); ...
1
vote
2answers
120 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 ...
1
vote
1answer
91 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. ...
1
vote
2answers
152 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 ...
0
votes
2answers
42 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
96 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 ...
0
votes
2answers
228 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
73 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 ...