Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

36
votes
27answers
7k views

Useful alternative control structures?

Sometimes when I am programming, I find that some particular control structure would be very useful to me, but is not directly available in my programming language. I think my most common desire is ...
14
votes
12answers
1k views

Does the last element in a loop deserve a separate treatment?

When reviewing, I sometimes encounter this kind of loop: i = begin while ( i != end ) { // ... do stuff if ( i == end-1 (the one-but-last element) ) { ... do other stuff } ...
10
votes
7answers
328 views

Strange PHP syntax

I've been working on PHP for some time but today when I saw this it came as new to me: if(preg_match('/foo.*bar/','foo is a bar')): echo 'success '; echo 'foo comes before bar'; ...
4
votes
3answers
342 views

Smalltalk Variadic functions

Does Smalltalk(especially Squeak/Pharo) have some form of variadic functions? I was just reading about the power of designing your own control statments in smalltalk and while I'm a big fan of ...
3
votes
7answers
154 views

break in for loop

Assume you have this code: function doSomething($array) { for($i = 0; $i < sizeof($array); $i++) { if ($array[$i] == "ok") return true; } return false; } Note that I'm not ...
3
votes
4answers
383 views

Scala: custom control structures with several code blocks

Is it possible to create a custom control structure with several code blocks, in the fashion of before { block1 } then { block2 } finally { block3 }? The question is about the sugar part only - I know ...
3
votes
4answers
448 views

Custom control structures in Scala?

There are a number of times I've run into a simple pattern when programming in Java or C++ for which a custom control structure could reduce the boilerplate within my code. It goes something like: ...
2
votes
1answer
182 views

control structures - common applications

What are the most common applications of each control structure. I am trying to get at a reference along the lines of: Control Structure - common application Conditions - true / false ...
1
vote
2answers
62 views

'break' from a switch, then 'continue' in a loop

Is it possible to break from a switch and then continue in a loop? For example: $numbers= array(1,2,3,4,5,6,7,8,9,0); $letters = array('a', 'b', 'c', 'd', 'e', 'f', 'g'); foreach($letters as ...
1
vote
5answers
137 views

How can I continue a JavaScript if.. else if statement until I receive valid input?

How can I continue prompting a user for a valid response using if... else if statements? My script currently works once, but then breaks: var enterNum = prompt("Please enter a number between 1 and ...
1
vote
1answer
117 views

PHP Control Structure :Declare()

I'm having a hard time understanding the PHP control structure declare() and where/how it would be used. http://us.php.net/manual/en/control-structures.declare.php I was hoping someone could ...
1
vote
2answers
608 views

Lookup table in Latex

I have a bunch of automatically generated LaTeX code with hypertargets of the form "functionname_2093840289fad1337", i.e the name of a function with a hash appended. I would like to refer to those ...
1
vote
10answers
811 views

Correct order for control structure logic (true/false, false/true)?

I am new to programming, and am wondering if there is a correct way to order your control structure logic. It seems more natural to check for the most likely case first, but I have the feeling that ...
0
votes
1answer
53 views

How can this PHP logic control structure be refactored?

My gut tells me that there is a better, perhaps one-line refactor for the following code: if (isset($x)) { if (isset($y)) { $z = array_merge($x,$y); } else { $z = ...
0
votes
3answers
66 views

PHP cache structure (skip code block if HIT)

Basically, I am implementing own cache system. Ideally, it'll look like this: $CACHE->start($name); //CODE $CACHE->end(); But that is a holy grail that I do not hope to find. Basically, ...
0
votes
2answers
72 views

Defining variables in control structures

According to the standard, what is the difference in behavior between declaring variables in control structures versus declaring variables elsewhere? I can't seem to find any mention of it. If what ...
-5
votes
3answers
94 views

How to - Go Dynamic with PHP

I have a form which actions against a php file. Once the form is completed and the data is inserted into the databse, it want it to display "Awesome". Awesome is being displayed but is above the form. ...