Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

232
votes
26answers
9k views

Why does this go into an infinite loop?

I'm a teacher, and yesterday a student wrote the following code: public class Tests { public static void main(String[] args) throws Exception { int x = 0; while(x<3) { ...
57
votes
4answers
45k views

Python: Behaviour of increment and decrement operators

I am a newbie to Python. I notice that a pre-increment/decrement operator can be applied on a variable (like ++count). It compiles, but it does not actually change the value of the variable! What is ...
41
votes
4answers
996 views

bool operator ++ and --

Today while writing some Visual C++ code I have come across something which has surprised me. It seems C++ supports ++ (increment) for bool, but not -- (decrement). It this just a random decision, or ...
26
votes
14answers
2k views

When does ++ not produce the same results as +1?

The following two C# code snippets produce different results (assuming the variable level is used both before and after the recursive call). Why? public DoStuff(int level) { // ... ...
18
votes
4answers
1k views

i = i++ doesn't increment i. Why? [closed]

Possible Duplicates: Why does this go into an infinite loop? Things like i = i++ have undefined behavior in C and C++ because the value of a scalar object is changes twice within the same ...
13
votes
13answers
2k views

Why is ++i considered an l-value, but i++ is not?

Why is ++i is l-value? and i++ not Initially there were 2 questions one was removed since that was exact duplicate. So don't down vote the answers that were answering difference between pre- and ...
11
votes
2answers
5k views

Python: How can I increment a char?

I'm new to Python, coming from Java and C. How can I increment a char? In Java or C, chars and ints are practically interchangeable, and in certain loops, it's very useful to me to be able to do ...
11
votes
6answers
868 views

Why use ++i instead of i++ in cases where the value is not used anywhere else in the statement?

I'm well aware that in C++ int someValue = i++; array[i++] = otherValue; has different effect compared to int someValue = ++i; array[++i] = otherValue; but every once in a while I see statements ...
10
votes
8answers
7k views

Is there a difference between x++ and ++x in java?

Is there a difference between ++x and x++ in java?
9
votes
4answers
700 views

Increment a value from AAA to ZZZ with cyclic rotation

I need to code a method that increment a string value from AAA to ZZZ with cyclic rotation (next value after ZZZ is AAA) Here is my code: public static string IncrementValue(string value) { ...
7
votes
6answers
374 views

Javascript Calculate brighter colour

I have a colour value in JS as a string #ff0000 How would i go about calculating a brighter/lighter version of this colour; for example #ff4848 but programatically and be able to calculate the ...
7
votes
2answers
651 views

Thread-safe way to increment and return an integer in Delphi

In a single-threaded application I use code like this: Interface function GetNextUID : integer; Implementation function GetNextUID : integer; const cUID : integer = 0; begin ...
7
votes
7answers
462 views

What is the difference between += and =+?

What is the difference between += and =+? Specifically, in java, but in general also.
6
votes
2answers
107 views

Thread unsafe decrementing/incrementing - why mostly positive?

I'm wondering about result of unsafe decrementing/incrementing in java threads, so there is my program: Main class: public class Start { public static void main(String[] args) { int ...
6
votes
3answers
230 views

Precedence of increment and decrement opreators in C++

I tried this on my gcc: int a=1; cout<<(--a)--; and the output is 0; but change it to cout<<--(a--); results in an error (lvalue required as decrement operand). Could someone ...
6
votes
5answers
954 views

Is incrementing a field in MySQL atomic?

I'm making a web site where I would like to increment a counter in a standard MyISAM table. Simplified example: UPDATE votes SET num = num + 1; Will this cause problems if multiple connections are ...
6
votes
2answers
806 views

SQL atomic increment and locking strategies - is this safe?

I have a question about SQL and locking strategies. As an example, suppose I have a view counter for the images on my website. If I have a sproc or similar to perform the following statements: START ...
6
votes
2answers
822 views

increment value of int being pointed to by pointer

I have an int pointer (int *count) if i want to increment the integer being pointed at using ++ I thought I would call *count++; However, I am getting a build warning "expression result unused". I ...
6
votes
4answers
543 views

Increment a database field by 1

With MySQL, if I have a field, of say logins, how would I go about updating that field by 1 within a sql command? I'm trying to create an INSERT query, that creates firstName, lastName and logins. ...
5
votes
8answers
140 views

Precedence of ++ and — operators in Java

I read from the official tutorial of Java that prefix and postfix ++ -- have different precedences: postfix: expr++ expr-- unary: ++expr --expr +expr -expr ~ ! Operators According to ...
5
votes
1answer
115 views

Please explain the output for this code

int a=5; printf("%d %d %d\n",a++,a++,++a); Output on Gcc : 7 6 8 Can someone please explain the answer. I apologize if this question has been repeated but i wasn't able to find it. Thanks!!
5
votes
5answers
3k views

post increment vs pre increment - Javascript Optimization

I was browsing Google Code when I chanced upon this project called JSpeed - optimization for Javascript. I noticed one of the optimization was to change i++ to ++i in for loop statements. Before ...
5
votes
8answers
876 views

I'm looking for an application/text editor that

can best help me systematically modify the "replace" field of a regex search as it encounters each match. For example, I have an xml file that needs the phrase "id = $number" inserted at regular ...
4
votes
2answers
187 views

Applying increment to ternary operator in C

I thought that the ternary operator returns either a value on the left side or the right side of : depending on the condition. Why does this following piece of code print 1? #include <stdio.h> ...
4
votes
3answers
452 views

Why does postfix operator++ have higher precedence than prefix operator++?

Defined this way, we can do neither ++x++ nor ++x--. But on the other hand, both (++x)++ and (++x)-- are useful expressions: (++x)++ increments x by two and returns the value "in the middle", while ...
4
votes
3answers
160 views

Single line increment and return statement in C#

Having been playing around with C# the last few days and trying to take advantage of its "succinct" syntax I have tried to use the following trick. Int32 _LastIndex = -1; T[] _Array; ...
4
votes
2answers
989 views

Ruby: How to iterate over a range, but in set increments?

So I'm iterating over a range like so: (1..100).each do |n| # n = 1 # n = 2 # n = 3 # n = 4 # n = 5 end But what I'd like to do is iterate by 10's. So in stead of increasing n ...
4
votes
2answers
807 views

C programming language, increment-decrement operators

#include<stdio.h> #include<conio.h> main() { int i=5; printf("%d",--i - ++i);//give output=0 printf("%d",++i + ++i);//give output=14 printf("%d",i++ + ++i);// give output=12 ...
4
votes
4answers
1k views

Explanation of ++val++ and ++*p++ in C

int val = 5; printf("%d",++val++); //gives compilation error : '++' needs l-value int *p = &val; printf("%d",++*p++); //no error Could someone explain these 2 cases? Thanks.
4
votes
4answers
155 views

++someVariable Vs. someVariable++ in Javascript

In Javascript you can use ++ operator before or after the variable name. What, if any, are the differences between these ways of incrementing a variable?
4
votes
1answer
139 views

incremental OL using letters (jQuery)

I'm trying to dynamically add a span to an ol, where the counter should be in letters. eg: A result B result C result etc etc I've got this code which is great for using numbers but I've no idea what ...
4
votes
3answers
619 views

bash script variable inside variable

x=1 c1=string1 c2=string2 c3=string3 echo $c1 string1 I'd like to have the output be string1 by using something like: echo $(c($x)) So later in the script I can increment the value of x and have ...
3
votes
2answers
37 views

incrementing the values in an array based of another array

I have a 2 dimensional 9 x 9 array (twoArray) that is filled with numbers between 1 & 17. I am trying to create a one dimensional array (oneArray) that will provide me with the occurrence of the ...
3
votes
4answers
81 views

Atypical uses for Javascript's ++ and — operators

If I recall correctly from Crockford's "Javascript: The Good Parts", he is not in favor of using the ++ or -- operators, but I also tend to recall he doesn't provide an especially strong argument ...
3
votes
5answers
112 views

C# increment ToString

I add an unexpected behaviour from C#/WPF private void ButtonUp_Click(object sender, RoutedEventArgs e) { int quant; if( int.TryParse(Qnt.Text, out quant)) { ...
3
votes
1answer
58 views

Increments of a date using Oracle SQL

We send mailouts every evening using SQL. For this in particular we'd like to send a reminder every 3 days, but I have absolutely no idea how to do this, or if it's even possible? Here's my code: ...
3
votes
1answer
77 views

Operator precedence in `copy` implementation example

I read a few lines of code here where it looks to me like there should be some parentheses. template<class InputIterator, class OutputIterator> OutputIterator copy ( InputIterator first, ...
3
votes
3answers
95 views

Unique ID with ::InterlockedIncrement (VC++)

Using VC++, to get a unique ID that counts upwards, I was wondering whether this is legal in a multi-threaded application? uint32_t GetNewId() { return ::InterlockedIncrement(&lastId); } ...
3
votes
4answers
144 views

Pointer incrementing in C++

What does this mean: that a pointer increment points to the address of the next base type of the pointer? For example: p1++; // p1 is a pointer to an int Does this statement mean that the address ...
3
votes
3answers
290 views

C++ : List iterator not incrementable

Getting this error while trying to erase the last element of a list. I debugged the code and was able to figure out what causes it and where, here's my code: for(Drop_List_t::iterator i = ...
3
votes
5answers
383 views

PHP: increment counter function using words (i.e. First, Second, Third, etc.. )

I've been trying to find a function which increments a counter using words. I know its possible using numbers with suffixes (i.e. 1st, 2nd, 3rd and so on). Here is a snippet of the code i've got: ...
3
votes
7answers
136 views

JavaScript increments [closed]

Possible Duplicate: ++someVariable Vs. someVariable++ in Javascript I know you can add one to a variable simply by doing i++ (assuming i is your variable). This can best be seen when ...
3
votes
2answers
289 views

Incrementing wtih one query a set of values in a field with UNIQUE constraint, Postgres

I have a table in which I have a numeric field A, which is set to be UNIQUE. This field is used to indicate an order in which some action has to be performed. I want to make an UPDATE of all the ...
3
votes
2answers
827 views

Pointer Arithmetic: ++*ptr or *ptr++?

I am learning C language and quite confused the differences between ++*ptr and *ptr++. for example: int x = 19; int *ptr = &x; I know ++*ptr and *ptr++ produce different results but I am not ...
3
votes
2answers
237 views

Not able to understand the order of evaluation of operands in the printf() function

Program 1: #include<stdio.h> int main(){ int x = 10; int arr[] = {1,2,3,4,5}; int *p = arr; printf("%d--%d--%d--%d\n",x++,++x,x += *p++,x -= (*(p+=1))--); printf("Final ...
3
votes
8answers
518 views

In Java, why can't I write i++++ or (i++)++?

When I try to write a postfix/prefix in/decrement, followed by a post/prefix in/decrement, I get the following error: Invalid argument to operation ++/--. But, according to JLS: ...
3
votes
4answers
548 views

python list element wise conditional increment

I have been searching this for a while, basically I am trying to conditionally increment a list of element by another list, element-wise... my code is following, but is there a better way to do it? ...
3
votes
2answers
1k views

How to increment field in sqlite android database

Hey, I want to increment a column in a sqlite android database. Im doing like this: public void atualiza(String word){ this.db.rawQuery("UPDATE words SET count = count + 1 WHERE word= ? ", new ...
3
votes
1answer
327 views

Mixing post- and pre- increment/decrement operators on the same variable [closed]

Possible Duplicate: Why is ++i considered an l-value, but i++ is not? In C++ (and also in C), if I write: ++x-- ++(x--) i get the error: lvalue required as increment operand However ...

1 2 3 4 5 7