The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
60 views

assigning an array value to a variable

I came across a problem which I did manage to solve but I honestly do not understand how this works. var array = [3, 6, 2, 56, 32, 5, 89, 32]; var largest = 0; //My code for (var i = 0; i < ...
0
votes
0answers
44 views

High Level vs Low Level for beginners [closed]

Since programming concepts are language independent, which type of language will work best to aid in the understanding of the fundamentals of programming (i.e. HOW to program) e.g. flow-control, ...
2
votes
1answer
151 views

Java hidden feature - Alternative constructor syntax? [duplicate]

Possible Duplicate: Efficiency of Java “Double Brace Initialization”? What is Double Brace initialization in Java? I found the code below as a Java hidden feature (in Portuguese). The guy ...
0
votes
1answer
47 views

How can I find python methods starting with double underscores?

I am learning python but I get confused when I see the functions or variables that start with double underscores like: __getAttributes__ __dict How can I find all the functions and attributes that ...
1
vote
4answers
113 views

objective-c strings: why don't you need a setter/getter?

I'm just beginning, and I'm a little hung up on this. I may have a fundamental misunderstanding with which you can kindly help me out. Why is it that you can assign a string value to an NSString* ...
1
vote
2answers
89 views

Why does this loop wait to finish before adding each result to list? w/ JSFiddle

I've made a dead simple loop to demonstrate my question: var listMaker = function() { document.getElementById('list').innerHTML = ""; var i = 1; while (i < 150) { ...
0
votes
3answers
233 views

Replace value in DataColumn

How to replace column value when looping rows? My DataTable has two columns, I want to replace the value of the first column on every row. I'm unable to get or set column value. So far I only manege ...
3
votes
6answers
100 views

What does index in jquery functions means

I am a jQuery started so if it is not of good quality forgive me. I want to know what does index means in the function and what exactly it refers too. Previously i thought it refers to the index ...
0
votes
3answers
87 views

Is this OOP code fundamentally correct? [closed]

I'm currently attempting to convert our page templates into OOP, and I have a feeling that what I've come up with for the navigation class isn't quite fundamentally correct. Do some of these methods ...
0
votes
3answers
137 views

C++ while statement for failed functions?

As an amater programmer, this confuses me. I'm probably just missing something. In C++ code that I've seen things like this: while (cin.get(c)) {...} almost as though it was a try statement. If the ...
0
votes
2answers
47 views

How can I understand the programs of others, or the results thereof? [closed]

I'm a homeschooling high-schooler learning programming. I don't understand how to learn about file formats. This could be a problem for me, as a lot of the things I do or may in the future want to do ...
1
vote
1answer
151 views

Class Templates in C++ Basic

template<class T> class Stack { public: Stack() { cout<<"Enter size\n"; cin>>size; //stackPtr=new int[size]; stackPtr= new T[size]; ...
-1
votes
4answers
71 views

Where could I possibly be messing up in a for loop?

Here is what I am doing (php) <?php for($i = 0; $i <= 30; $i+2) { echo $i; } ?> It drives me nuts,coz it does not work [prints nothing, browser keeps trying to load]. But if I change ...
-1
votes
1answer
94 views

PHP / MySQL practice [closed]

What would a potential employer think when seeing a function such as: function updTable{$table, $primary, $id, $key, $value){ $primary = mysql_real_escape_string($primary); $id = (int) $id; ...
0
votes
5answers
205 views

what is int, fundamental data type [closed]

can anyone tell sth about what is int data type in C++, drilling the headers I get stucked in WinDef.h where I've found typedef int INT; and it is impossible to get in deeper. there ...
0
votes
1answer
89 views

Are there any books that explain Suns/Oracle's logic behind the class hierarchy? [closed]

Java has a huge number of design ideas behind that are very difficult for a beginner to learn/understand. Things like rasters, colormodels, BufferedImage vs Image, all of these things are ...
16
votes
10answers
1k views

in C# what does 'bool = bool != true' mean?

In my hunt for some help to a problem I was having I came across this: p.Enabled = p.Enabled != true; What exactly does this mean? Ive never seen it before, nb: the preceeding line was var p = ...
18
votes
4answers
12k views

Java - No enclosing instance of type Foo is accessible

All, right, I know there are a ton of threads about this, but... I have the following code: class Hello { class Thing { public int size; Thing() { size = 0; ...
3
votes
1answer
210 views

NSMutableArray removeObjectAtIndex causing unexpected SIGABRT

I have looked at numerous posts which state various ways in which to remove an object from an array correctly, but I am not sure which method is best to use in my instance. I am loading a dictionary ...
2
votes
2answers
129 views

c pointers, Anyone got fundamental issues? [duplicate]

Possible Duplicate: What do people find difficult about C pointers? New to c programming (Actually new to programming in general). Well, I just can't get familiar with c pointers. maybe, I ...
7
votes
11answers
442 views

What direction should I take to improve my programming skills?

I've been attempting to learn programming (in C#) for a few years now. The problem I've had is that I'd know what I want to do (or what I want the program to do), but no idea on how to actually ...
14
votes
8answers
295 views

I'd like to get back to the basics of CS. Any suggestions for tutorials or application-minded reference material?

I've been programming as a consultant for years, and I adore my work, which involves a lot of object-oriented analysis and design of software systems using managed languages (ie. software ...
0
votes
5answers
306 views

Edited most errors, Now Compiles, but does not Run, what am I doing wrong?

#include <cstdlib> #include <iomanip> #include <iostream> #include <string> using std::cout; using std::cin; using std::endl; using std::string; using std::setprecision; using ...
31
votes
10answers
3k views

A clear, layman's explanation of the difference between | and || in c#?

Ok, so I've read about this a number of times, but I'm yet to hear a clear, easy to understand (and memorable) way to learn the difference between: if (x | y) and if (x || y) ..within the ...