Tagged Questions
In an imperative programming language, a program is a sequence of statements, which are the smallest isolated components of a program. In constrast to expressions, statements are mainly executed for their side effects, not for their return value.
140
votes
14answers
12k views
Expression Versus Statement
I'm asking with regards to c#, but I assume its the same in most other languages.
Does anyone have a good definition of expressions and statements and what the differences are.
Thanks in advance.
26
votes
5answers
320 views
Why is `continue` not allowed in a `finally` clause in Python?
The following code raises a syntax error:
>>> for i in range(10):
... print i
... try:
... pass
... finally:
... continue
... print i
...
File ...
24
votes
12answers
14k views
Do you use the “global” statement in Python?
I was reading a question about the Python global statement ( "Python scope" ) and I was remembering about how often I used this statement when I was a Python beginner (I used global a lot) and how, ...
12
votes
3answers
3k views
11
votes
5answers
921 views
Python: what is the difference between an Expression and a Statement?
In Python: what is the difference between Expressions and Statements?
Thanks.
10
votes
2answers
531 views
In Python, is use of `del` statement a code smell?
I tend to use it whenever I am working on a prototype script, and:
Use a somewhat common variable (such as fileCount), and
Have a large method (20+ lines), and
Do not use classes or namespaces yet.
...
10
votes
9answers
468 views
C++ assignment - stylish or performance?
Having been writing Java code for many years, I was amazed when I saw this C++ statement:
int a,b;
int c = (a=1, b=a+2, b*3);
My question is: Is this a choice of coding style, or does it have a ...
8
votes
5answers
438 views
How to correctly write Try..Finally..Except statements?
Take the following code as a sample:
procedure TForm1.Button1Click(Sender: TObject);
var
Obj: TSomeObject;
begin
Screen.Cursor:= crHourGlass;
Obj:= TSomeObject.Create;
try
// do ...
8
votes
3answers
138 views
Array-like statement with curly brackets - what is the purpose?
I found this snippet of code online and I was wondering what it does:
$k[$i] = ord($key{$i}) & 0x1F;
I know that ord() returns an ASCII value, but I'm unclear on what the curly brackets do ...
6
votes
7answers
367 views
Rewriting a conditional statement in Java
Say if I have the code below, it's bascially determining some condition is matched and then assign the boolean value, then run some codes. Then throw an exception if the booleanValue is false. What if ...
5
votes
2answers
131 views
SQL : First condition in OR statement in JOIN is always executed first?
In SQL Server, I've the following design:
Is it 100% sure that the first condition from the OR statement in a JOIN will be executed first ? So that the following SQL statement will result in the ...
5
votes
1answer
161 views
java why is long value in if statement validated wrong
In the below code the if statement evaluates to true but i can see its false.
Clearly there is a logic here to explain this but i cannot remember it.
2 movies showing the phenomenology:
...
5
votes
3answers
147 views
using CASE WHEN in select statment
I am using following for select statment with case. The column to which the CASE is applied has True, False and Null values. I am trying to display True for True and False for both False and Null. ...
5
votes
7answers
1k views
C++ - statement cannot resolve address for overloaded function
When I types the following as a stand-alone line:
std::endl;
I got the following error:
statement cannot resolve address for overloaded function
Why is that? Cannot I write std::endl; as a ...
5
votes
6answers
388 views
Difference between a statement and a query in SQL
I still live in this ambiguity: conceptually what's the difference between a statement and a query in SQL? Can anybody give a definition for each of them? It would be useful, for example when choosing ...
5
votes
5answers
502 views
How add “or” in case statements?
This is what I want to do:
switch(myvar)
{
case: 2 or 5:
...
break;
case: 7 or 12:
...
break;
...
}
I tried with "case: 2 || 5" ,but it didn't work.
The purpose is to ...
4
votes
1answer
55 views
SQL: Statement Triggers VS For Each Row
EDIT: I don't know what distro it is, it's in an exam paper.
I'm just not getting this, sadly. I'm quite happy with Row level triggers but could someone explain to me how the results would differ if ...
4
votes
2answers
95 views
How to identify high-load SQL in Oracle, using oracle views?
I'm looking for a query, that will return a list of high-load sql statements. I don't want to use any Oracle tools like ADDM or AWR. I need a query statement, that will return high-load sql ...
4
votes
6answers
344 views
Python: How to tell the for loop to continue from a function?
Sometimes I need the following pattern within a for loop. At times more than once in the same loop:
try:
var = 'attempt to do something that may fail on a number of levels'
except ...
4
votes
3answers
199 views
Problem with javascript switch statement
elmid = "R125";
switch(true){
case elmid.match(/R125/):
idType = "reply";
break;
}
alert(idType); // Returns undefined
-------------------BUT----------------------
elmid = ...
4
votes
4answers
524 views
MYSQL if a select query returns 0 rows then another select query?
if (select * from table where x=1) returns 0 rows then i need (select * from table where x=2 [or some other query]). is it possible to do this in a single MYSQL query with a conditional statement?
...
4
votes
12answers
288 views
Why is there excessive use of whitespaces in expressions in most sample code? [closed]
A statement that could be written as:
foo=(bar*5)+baz;
is usually written in sample code (documentation, tutorials etc) as:
foo = ( bar * 5 ) + baz;
This appears to require extra work and seems ...
4
votes
5answers
60 views
Sql query to get this result
Consider i have a user table and I have three columns mobilePhone,homePhone and workPhone...
I have to select homePhone for every user as first pref
if there is no value
I'll go ...
4
votes
2answers
678 views
Why differs floating-point precision in C# when separated by parantheses and when separated by statements?
I am aware of how floating point precision works in the regular cases, but I stumbled on an odd situation in my C# code.
Why aren't result1 and result2 the exact same floating point value here?
...
4
votes
3answers
401 views
Python (2.6) , List Comprehension: why is this a syntax error?
Why is print(x) here not valid (SyntaxError) in the following list-comprehension?
my_list=[1,2,3]
[print(my_item) for my_item in my_list]
To contrast - the following doesn't give a syntax error:
...
4
votes
2answers
694 views
Are compund statements (blocks) surrounded by parens expressions in ANSI C?
Browsing the Linux kernel sources I found some piece of code where a block of statements surrounded by parenthesis is treated as a expression a la lisp (or ML), that is, an expression which value is ...
4
votes
5answers
2k views
Dictionary or If statements, Jython
I am writing a script at the moment that will grab certain information from HTML using dom4j.
Since Python/Jython does not have a native switch statement I decided to use a whole bunch of if ...
3
votes
4answers
120 views
Confusing for loop C#
I am using this loop to go through my database, and check if players Club field matches the clubAway variable. At if statement it "goes berzerk".
Baza = dataset
Players = table in database
Club = ...
3
votes
3answers
34 views
PDO IN() Array Statement AND a placeholder
I found this code on SO, which is great for using PDO and the IN() statement together.
$values = explode(',', $values) ; # 1,4,7
$placeholders = rtrim(str_repeat('?, ', count($values)), ', ') ;
...
3
votes
1answer
123 views
What's try-else good for in Python?
I'm trying to learn the minor details of Python, and I came upon the try-else statement.
try1_stmt ::= "try" ":" suite
("except" [expression [("as" | ",") target]] ":" suite)+
...
3
votes
2answers
71 views
Using Wildcards in SQL Where statement
I've got the following code:
SELECT ItemName
FROM skuDetails
WHERE skuDetails.SkuNumber = '" & search & "'
OR
skuDetails.ItemName = '%' + @search + '%'"
Basically I've got a ...
3
votes
4answers
64 views
Python Sorting Data for loop and if statement
data = ['cat', 'dog', 'None', 'Turtle', 'None']
new_data = []
for item in data:
if item == 'None':
new_data.append(data.index(item))
print new_data
>> [2,2]
How do I go about ...
3
votes
3answers
93 views
Can I do that in the SQL statement?
Let say I have a post table. But I want to query all today post. But if today post is less than 10 post, I will get back the yesterday post to query. If it is more than 10 posts, no need to query ...
3
votes
2answers
58 views
JDBC Closing Resources
I am unsure whether a statement and resultset should be closed after each query or after all my queries have been made (ie at the same time i close the connection)?
Correct me if I'm wrong, but I'm ...
3
votes
4answers
98 views
Get list of cases in switch statement
I use a PHP Switch statement to determine the pages of my website. So here is an example:
switch($page) {
case "about":
$title_name = "About Us";
$page_content = ...
3
votes
4answers
83 views
converting an if statement to a switch statement
How can I convert the following if=statement to a switch-statement WITHOUT needing to create a case for every number between that interval (41-49)? Is it possible?
if (num < 50 && num > ...
3
votes
5answers
186 views
Logic behind the for loop [closed]
I understand the above question is not so specific and there are answered threads relating to for loop.
I am new to programming, most of the answered thread are more specific.
My question:
What is ...
3
votes
3answers
98 views
Question about if statement in function in javascript - how if the if statement return true but the function return false
can i ask you guys a question?
Below is my code:
var num = 1;
var isNumberEqualOne = function(){
if(num == 1){
return true;
}
return false;
}();
alert(isNumberEqualOne);
In this ...
3
votes
4answers
156 views
What's the difference between a keyword or a statement, and a function call?
I was thinking about this recently since Python 3 is changing print from a statement to a function.
However, Ruby and CoffeeScript take the opposite approach, since you often leave out parentheses ...
3
votes
9answers
365 views
What is the meaning of (true && false || true) in C#?
If I have this equation:
var x = (true && false || true)
Is that equivalent to:
var x = ((true && false) || true)
or:
var x = (true && (false || true))
And ...
3
votes
3answers
284 views
C++ Switch Statement inputs
I am writing a C++ program that prompts the user for an input and then keeps track of how many times that input is entered. I am currently using a do-while loop and a switch statement. The part I am ...
3
votes
2answers
537 views
MYSQL Inner Join if statement
i'm trying to join 3 tables together but use an IF statment to only run a certain query
I have a user table, customer and staff table. The first part below works:
SELECT user.`userID`, `username`, ...
3
votes
2answers
141 views
for/in statement
I'm having trouble understanding the for/in statement in JavaScript.
The book which I'm using explains it as:
for(variable in object){
statement
}
So take for example:
var links = {
...
3
votes
4answers
167 views
Does C always evalute all statements connected with && or ||
pretty simple question I have here, but I couldn't find the answer:
Assume I have some conditional clause made up of several conditions. E.g. something like
if((a == b && strcmp(string1, ...
3
votes
2answers
101 views
Is there a similar count method in SQL like mysql_num_row
I am using SQL and I would like to count the number of rows without a loop. I can't seem to get the "COUNT" keyword working but I know that in MySQL mysql_num_row does the trick. Is there a similar ...
3
votes
2answers
197 views
Can't create SQL Statement - Java
Well writing a login checker for a game, and switching from C# to java. Problem is I am using older code as an exmaple but keep running into this problem with creating a statement from connection. I ...
3
votes
3answers
198 views
basic haskell control statements - statement that always runs possible?
If i wanted to do the following:
function1 stuff
| condition1 = "yay"
| condition2 = "hey"
| condition3 = "nay"
and i wanted to have a statement that always ran, unconditionally, (e.g. ...
3
votes
6answers
256 views
What does this statement do: ();
I've seen perl statements that look like this:
() unless $some_var;
What is that intended to achieve?
3
votes
5answers
1k views
Difference between Statement and PreparedStatement
The Prepared Statement is a slightly more powerful version of a Statement, and should always be at least as quick and easy to handle as a Statement.
The Prepared Statement may be parametrized
Most ...
3
votes
3answers
80 views
PHP: Search in more tables at once?
How do i make a mysql query for more tables to check at once?
i mean, something like:
$sql = mysql_query("SELECT username FROM table1, table2, table3 WHERE username = '$username'");
$numer = ...