Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
16
votes
1answer
210 views

What good is the NERFIN loop operation in LOLCODE?

What the spec says on the subject: Iteration loops have the form: IM IN YR <label> <operation> YR <variable> [TIL|WILE <expression>] <code block> IM OUTTA YR ...
14
votes
2answers
173 views

How can I define pre/post-increment behavior in Perl objects?

Date::Simple objects display this behavior, where $date++ returns the next day's date. Date::Simple objects are immutable. After assigning $date1 to $date2, no change to $date1 can affect $date2. ...
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
229 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 ...
4
votes
3answers
147 views

How do I know if my iterator was decremented past the beginning of my vector?

I am moving an iterator backward and forwards through a vector. I can check if the iterator ran off the end like so: ++my_iterator; if ( my_iterator == my_vector.end() ) { --my_iterator; // if I ...
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
4answers
288 views

Why is `x— > 0` not undefined behaviour, while `x = x--` is?

As everyone knows, this loops through zero: while (x-- > 0) { /* also known as x --> 0 */ printf("x = %d\n", x); } But x = x-- yields undefined behaviour. Both examples need some ...
3
votes
8answers
516 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
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 ...
2
votes
3answers
178 views

Increment / decrement button In ExtJS

Is there a button in ExtJS with increment/decrement feature (something like that)? I have some numberfields with values that are usually incremented/decremented when edited and this button would be ...
1
vote
1answer
62 views

How do I concisely write x = x - 4 unless x is less than 0, in which case x = 0?

I am doing some pagination and can do @next_images_to_paginate += 4 without a problem. But @previous_images_to_paginate -= 4 doesn't because I can get negative numbers. I can't use absolute because ...
1
vote
4answers
120 views

Decrementing for loop in coffeescript

I know how to do a incrementing for loop in coffeescript such as: Coffeescript: for some in something Generated Javascript: for (_i = 0, _len = something.length; _i < _len; _i++) How do I ...
1
vote
7answers
83 views

Explain, please, these ++ and — operations

Why this code outputs 3, not 2? var i = 1; i = ++i + --i; console.log(i); I expected: ++i // i == 2 --i // i == 1 i = 1 + 1 // i == 2 Where I made mistake?
1
vote
1answer
309 views

autoincrement & decrement integer field are available in sqlite database?

I am fetching my data with id which is Integer primary key or integer. But after deleting any row... After that if we make select query to show all. But it will give force close because one id is ...
1
vote
1answer
105 views

Decrementing an ordered list

I have a ordered list in an html document, you know, like <ol> <li> item one <li> item two </ol> which displays, obviously, as 1. item one 2. item two I want ...
1
vote
4answers
115 views

Ruby decrement to limit

I'd like to have a set of methods that can increment/decrement a value, but with a lower limit of zero. Basically: def decrement @value -= 1 end Except, I don't want it to go lower than zero. ...
1
vote
2answers
124 views

Subtracting 1 from a value and storing it in another variable

I vaguely remember running into this problem before, but I'm wondering if this just doesn't work in PHP: echo $counter; // outputs 4 $output = $counter--; echo $output; // outputs 4 If I do ...
1
vote
2answers
459 views

Some assembly questions regarding increment, decrement and multiplication

I'm facing some questions since they're not clearly covered in the IA-32 assembly ebook I'm studying: 1-Is the zero bit in status part of EFLAGS register the only bit among status bits affected by ...
1
vote
3answers
785 views

Decrementing for loops

I want to have a for loop like so: for counter in range(10,0): print counter, and the output should be 10 9 8 7 6 5 4 3 2 1
1
vote
2answers
379 views

iPhone: Problem with incrementing NSNumber & displaying transparent images (UIImageView)

I have a problem with NSNumber: I don't understand how to increment and decrement it! I've tried int with [NSNumber intValue] and so on, but it didn't work!!!! I just want a page counter which can be ...
1
vote
3answers
428 views

Creating buttons for textbox and assigning click functions on the fly in JQuery

I have the following code to create two buttons (one on the left one on the right) for each texbox on the page. Idea is to make an increment/decrement textbox. Code works fine with one textbox but ...
1
vote
5answers
469 views

Decrement in mysql goes past zero

I am trying to do this in mysql: UPDATE table SET value = value - 1 WHERE blah blah If value is 0 and this is run value is set to 4294967295. This is because it is an unsigned integer so it is ...
1
vote
3answers
192 views

Which is the first address of ARM DA(Decrement After) addressing mode?

I have two questions about DA addressing mode. For example: STMDA R0!, {R1-R7} The start address will be R0 - (7 * 4) + 4, that is, R0-24, according to the ARM Architecture reference manual and ...
0
votes
2answers
42 views

Actionscript 3.0 getter setter increment

private var _variable:int; public function set variable(val:int):void{ _variable = val; } public function get variable():int{ return _variable } Now if I have to increment the ...
0
votes
2answers
34 views

Decrement array length in Javascript

I just ran across this javascript snippet: myArray.length--; What does it do exactly?
0
votes
1answer
71 views

Auto Increment(+) and Decrement(-) button like time picker

Hello I'm trying to get an edit increment decrement, to no avail. I see on Time/Date palette: Time picker, but i want only one box. I'd like an edit like this: Thank You!
0
votes
1answer
77 views

Substraction or decrement random access iterator pointing to begin

Consider following piece of code void foo( bool forwad ) { vector<MyObject>::iterator it, end_it; int dir; it = some_global_vector.begin() + some_position; if( forward ) { ...
0
votes
2answers
92 views

i++ and ++i in c/c++ [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) How do we explain the result of the expression (++x)+(++x)+(++x)? Could someone ...
0
votes
5answers
62 views

Decrement a For Loop?

I can increment a FOR loop in xcode, but for some reason the reverse, namely decrementing, doesn't work. This incrementing works fine, of course: for (int i=0; i<10; ++i) { NSLog(@"i =%d", ...
0
votes
0answers
27 views

Magento double stock decrement

On our Magento, we have decided to decrease stock when an order is confirmed. However, after the order is placed, to finish the order, we go in it, invoice it, and then ship it. And at that time, the ...
0
votes
2answers
122 views

Using a Counter class to increment and decrement: java

I'm having trouble visualizing the end product of this problem: Define a class called Counter whose objects count things. An object of this class records a count that is a nonnegative integer. ...
0
votes
6answers
239 views

Make this increment/decrement work with multiple inputs in jQuery

I am having a bit of trouble selecting an input. Basically, I need the button to increase or decrease the value of a single input contained in the same element. Here's the HTML: <div> ...
0
votes
4answers
130 views

php: how to decrement date time into a foreach for every item…?

... and not one time only... $now = date("D, d M Y H:i:s O"); foreach ($items AS $item) { $currentDate = strtotime($now); $pastDate = $currentDate-(60*5); ...
0
votes
2answers
140 views

MySQL not decrementing values

I can't get the values in the table Accounts to decrement when I try to delete a post. The values I would like to decrement are "PostCount", "Likes Count" and "CommentsCount". Currently only the ...
0
votes
1answer
169 views

jquery count with each clone instance and display count

Task I am cloning a div.cloneable with the following function: $('#addBtn').click(function() { var c = $('.cloneable:first').clone(true); $('.cloneable:last').after(c); } }); Then, after I clone ...
0
votes
3answers
238 views

post decrement in while conditon in C

I've done a search and I’ve found nothing relevant to my query. I am currently debugging a C optimizer and the code in question looks like this: while( x-- ) array[x] = NULL; What should happen in ...
0
votes
5answers
171 views

Combined dereference and decrement in C

I need as efficient a means as possible to shift the contents of an array. I need to shift the contents of each array location one to the right and ignore the first one, so that I can write a new ...
0
votes
2answers
398 views

pre Decrement vs. post Decrement

When should I use pre decrement and when to use post decrement? and for the following code snippet, should I use pre or post decrement. static private void function(int number) { charArr = new ...
0
votes
4answers
354 views

C++ Iterator dereference and prefix increment/decrement style? Is *--Iter ok style wise?

In coding with C++ iterators if you wanted to get the previous value to what an iterator points to would you write: *--Iter or would you think it better to add parentheses like so: *(--Iter) ?
0
votes
1answer
82 views

Can solr be used to increment/decrement?

I am working on a project right now that has a solr index of counts and ids. I am currently researching if it is possible to increment/decrement on solr directly, instead of having to retrieve the ...
0
votes
3answers
227 views

Count zero interrupt

I have long been a fan of William Gibson, but it's clear that he doesn't have much tech savvy - no harm in that, maybe just kuddos that he learned a few buzzwords and wrote some awesome books. But, ...
-3
votes
3answers
115 views

C++ decrement confusions [closed]

Possible Duplicate: Could anyone explain these undefined behaviors (i = i++ + ++i , i = i++, etc…) Undefined Behavior and Sequence Points As for me a nice question was touched ...
-3
votes
5answers
180 views

Prevent the risk when using decrement/increment postfix operator in C++?

Recently I found the risk when using st like this: int i = 10; int sum = 0; while ( i-- ){ sum = sum + i; It actually get sum = 9 + 8 + 7 + .. + 1. So it lacks 10 in total. But I prefer this ...