Tagged Questions

-1
votes
1answer
61 views

Java V.S Procedural Languages [closed]

I am learning programming since long time, yet the following baffled me, I found out that I am choosing and learning different technologies not knowing how they differ from other alternatives, the …
4
votes
11answers
423 views

For real-time application, which is better C or C++?

I’m electronic engineer with experience with both language C and C++ (I wrote with C for micro-controller and with C++ I wrote for Windows with Borland C++ Builder) My company develops motor control …
0
votes
2answers
56 views

how do we compare 2 class names of an object

Is there a way to get compare class name betweeen 2 objects? Like: NSString *bla = [[NSString alloc] init]; if([bla class] isEqual: NSString]) NSLog(@"success"); unsure if my syntax is correct.
1
vote
8answers
105 views

Which is fast comparison: Convert.ToInt32(stringValue)==intValue or stringValue==intValue.ToString()

Hi, While developing my application i came across some comparison stuff here was it: string str = "12345"; int j = 12345; if (str == j.ToString()) { //do my logic } I …
0
votes
1answer
14 views

Difference between these two bit.ly API ActionScript implementations?

I'm new to Flex and wondering what the difference is between these two ActionScript implementations of the bit.ly API: http://github.com/julien/as3_bitly http://code.google.com/p/bitly-as3-api/ One …
0
votes
3answers
65 views

how to compare two arrays of objects

i have an object called Person. It has properties First, Last, Age, etc . . . I have two arrays of Person objects. I want to have some function to take two arrays Person[] firstlist = . . …
2
votes
2answers
121 views

Eclipse PDT vs. NetBeans for PHP development

How does Eclipse PDT compare to NetBeans for PHP development? I just bought a new computer with Windows 7 and I'm starting to set up a development environment for PHP. Has anyone used both IDEs …
0
votes
0answers
18 views

Comparing window.parent/opener with NULL or ‘undefined’

If I have this method: this.getForm = function () { try { var frmIndex = arguments[0]; if (isNaN(frmIndex)) frmIndex = 1; if (window !== null) { if (window.opener !== null) { …
0
votes
2answers
42 views

Odd comparison problem in checking for anagram

I'm sorry, the title's awful; however, I couldn't think of any better way to summarize my plight. In trying to solve a problem involving checking to see if one string is an anagram of another, I …
0
votes
2answers
48 views

What is the difference between SSCLI 2.0 (ROTOR) and .NET?

Is there a large difference between the SSCLI 2.0 and .NET, I know that Microsoft wouldn't release their garbage collector or JIT compiler and simpler implementations are used, but as far as the rest …
2
votes
0answers
96 views

Comparison between Erlang and nginx [closed]

Are there any comparisons between nginx and Erlang web servers. I found this http://www.joeandmotorboat.com/2009/01/03/nginx-vs-yaws-vs-mochiweb-web-server-performance-deathmatch-part-2/ but the tests …
3
votes
4answers
124 views

Preferred implementation of ‘<’ for multi-variable structures

Initially this may seem overly abstract or philosophical, but I am genuinely interested to see if someone has a convincing argument in favor of one implementation over the other. Given operator< …
2
votes
3answers
64 views

get NSDate today, yesterday, this Week, last Week, this Month, last Month… variables

what i am trying to do is to get NSDate today, yesterday, this Week, last Week, this Month, last Month variables ready for comparison for headers to be added on UITableView's titleForHeaderInSection …
2
votes
8answers
130 views

C++/CLI : Advantages over C#

Is there any major advantage of managed C++/CLI over C#. Definitely not the syntax I suppose as the following code in C++/CLI is real ugly, C++/CLI code: [Out]List<SomeObject^>^% someVariable …
0
votes
6answers
289 views

How do I compare two Integers?

This sounds like a stupid question, but I'm kinda stuck here. I have to compare two Integer (not int). How do I compare them? Integer x = ... Integer y = ... I can think of this: if (x == y) …

1 2 3 4 5 33 next
15 30 50 per page