473,387 Members | 3,787 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,387 software developers and data experts.

Assignments in conditions should be avoided

code green
1,726 Expert 1GB
I have just switched from phpdesigner to Netbeans as my script editor.
Netbeans is criticising my code with this warning
Possible accidental assignment, assignments in conditions should be avoided
What is your opinion of the warning when doing this for example?
Expand|Select|Wrap|Line Numbers
  1.  if($data = $file($filepath))
The alternative is
Expand|Select|Wrap|Line Numbers
  1. $data = $file($filepath);
  2. if($data)
which seems less professional.
Oct 29 '09 #1

✓ answered by Markus

@code green
This is discouraged in most languages and mainly because of readability, I think. TBH, I could glance over that code and think that what I saw was a comparison check. To avoid this ambiguity, I'd do it like:

Expand|Select|Wrap|Line Numbers
  1. if (($data = somefunc()) != 0) { ...
  2.  

16 10131
Dheeraj Joshi
1,123 Expert 1GB
@code green
I don't know why it complains but.....

My organization insist me to write code in this way.
Expand|Select|Wrap|Line Numbers
  1. $data = $file($filepath);
  2. if($data)
  3.  
If i club more statements in a condition like

Expand|Select|Wrap|Line Numbers
  1. if($data = $file($filepath))
  2.  
i will get review comments.

Regards
Dheeraj Joshi
Oct 29 '09 #2
Dheeraj Joshi
1,123 Expert 1GB
I dont know about that problem, but my organization has some coding standards, as per that.

If i try to write code as

Expand|Select|Wrap|Line Numbers
  1. if($data = $file($filepath))
  2.  
my managers gives review comments to this code saying it to change as

Expand|Select|Wrap|Line Numbers
  1. $data = $file($filepath);
  2. if($data)
  3.  
Regards
Dheeraj Joshi

Regards
Dheeraj Joshi
Oct 29 '09 #3
code green
1,726 Expert 1GB
I have had a Google and it seems the reasoning behind this is to avoid the schoolboy error of confusing
Expand|Select|Wrap|Line Numbers
  1. if($data = $file($filepath)) 
and
Expand|Select|Wrap|Line Numbers
  1. if($data == $file($filepath)) 
Are script editors now assuming the lowest common denomitor of programming skill?
Oct 29 '09 #4
Dormilich
8,658 Expert Mod 8TB
don’t know about that… but admittedly, if someone other than you looks at the statement
Expand|Select|Wrap|Line Numbers
  1. if ($var = function($param))
(s)he might not be sure, whether it is intended or a mistake.
Oct 29 '09 #5
Markus
6,050 Expert 4TB
@code green
This is discouraged in most languages and mainly because of readability, I think. TBH, I could glance over that code and think that what I saw was a comparison check. To avoid this ambiguity, I'd do it like:

Expand|Select|Wrap|Line Numbers
  1. if (($data = somefunc()) != 0) { ...
  2.  
Oct 29 '09 #6
code green
1,726 Expert 1GB
So it seems to be discouraged for maintainability.
Hmm, I have never made the comparator/assignment error, even when reading.
But I like to comply with best practice protocol and would hate future coders criticising my legacy code.
I quite like Markus' method.
Maybe I should listen to Netbeans and modify where required
Oct 29 '09 #7
Markus
6,050 Expert 4TB
I wonder how the following code is evaluated: if ($data = somefunc())?

Is the value of somefunc() assigned to $data and then $data's value is checked, or is the assignment checked (does the assignment fail)?

I'm going to ask on the PHP dev mailing list.
Oct 29 '09 #8
Dormilich
8,658 Expert Mod 8TB
I don’t think an assignment can fail… it’s usually expressions that fail.
Oct 29 '09 #9
code green
1,726 Expert 1GB
I wonder how the following code is evaluated: if ($data = somefunc())
Logic tells me that the most inner bracket command is carried out first,
then working outwards.
So the return value of somefunc() is assigned to $data even if this value is FALSE.
Then the if() condition is evaluated.

If PHP was strictly typed then $data could not be a boolean or say an array.
So does loosely typed allow potential bugs to creep in
Oct 29 '09 #10
Markus
6,050 Expert 4TB
@Dormilich
An assignment is an expression?
Oct 29 '09 #11
Markus
6,050 Expert 4TB
You're correct, I think. The end value of the expression is used. You see, this is where the ambiguity comes in. If I write it as if (($data = somefunc())), then it makes perfect sense that the result from the innermost expression is used.

/doh.
Oct 29 '09 #12
Dormilich
8,658 Expert Mod 8TB
@Markus
is my English that bad?
Oct 29 '09 #13
Markus
6,050 Expert 4TB
@Dormilich
No. My understanding is that an assignment is an expression.

Edit: I guess not.
Oct 29 '09 #14
code green
1,726 Expert 1GB
A note to Netbeans users, the warning can be disabled in
Tools>>Options then Hint tab. Select PHP for Language.
Uncheck the "Possible accidental assignment..." option under Stable.

This of course does not mean it is acceptable practice.

I checked the "Experimental" option under hints which revealed a lot more sins in my code.
Mainly unitialised variables, but I can live with those.
Oct 29 '09 #15
Markus
6,050 Expert 4TB
Here is a good reply that I got:

Assignment operations in PHP have the "side effect" of returning the
assignment. For example:

function return_false() {
return false;
}

var_dump(return_false()); //bool(false);
var_dump($a = return_false()); //bool(false);
var_dump($a = 1); // int(1)
var_dump($a = "hello world!"); //string...

So the same thing that allows you to do:

$a = $b = $c = $d = 154;

which works because "$d = 154" returns 154, which is assigned to $c,
which returns 154... is how assignment in conditionals or looping
works:
if($a = return_false()) { }
var_dump($a); //bool(false)

if($a = "hello") {}
var_dump($a); //string, "hello"

So what's really happening is the return value of the expression "$a =
____" is evaluated and that's used to determine the truth of the
conditionality. if($a = return_false()) is exactly the same thing as
if(return_false()) save for you "capture" the output of the function,
rather than just allow the conditional operator to see it. It's
functionally equivalent to $a = return_false(); if($a) {} but it's
important to understand that __assigning a variable to a value in PHP
is an expression with a return value___ and that return value is the
value that you assigned to the variable.
Oct 29 '09 #16
code green
1,726 Expert 1GB
As I come from a C++ background,
in my own functions if I wish to return a value and/or an error code,
I prefer to pass a pointer to the function and return the error code
Expand|Select|Wrap|Line Numbers
  1. $data = array();
  2. if(getData($data)){....}
  3.  
  4. function getData(&$retData){
  5.     $success = false;
  6.     ...
  7.    //load data into $retData
  8.   //If successful then $success = true;
  9.    ...
  10.     return $success;
  11. }  
But PHP inbuilt functions don't do it this way.
Very few even accept a pointer as a parameter.
Oct 29 '09 #17

Sign in to post your reply or Sign up for a free account.

Similar topics

4
by: Jacek Generowicz | last post by:
I am dealing with an application which reads in configurations by calling (a wrapper around) execfile. Any configuration file may itself execfile other configuration files in the same manner. I...
9
by: Mark Twombley | last post by:
Hi, I'm just getting back into C++ and had a question about the best practice for assigning error numbers. I have been working in VB for sometime now and there you would start assigning error...
3
by: bearophileHUGS | last post by:
The current version of ShedSkin (http://shedskin.sourceforge.net/ experimental Python to C++ compiler) is rather alpha, and the development work is focused on debugging and implementing some more...
21
by: Paul Steckler | last post by:
Here's some code that's giving me differing results, depending on the compiler. typedef foo { int A,B; } FOO; int main() {
5
by: Uday Deo | last post by:
Hi everyone, I am looping through 4 nested loops and I would like to break in the inner most loop on certain condition and get the control on the 2 nd loop instead of 3rd loop. Here is briefly...
8
by: Fredrik Tolf | last post by:
Hi list! I'm relatively new to Python, and one thing I can't seem to get over is the lack of in-expression assignments, as present in many other languages. I'd really like to know how Python...
0
by: Simon Burton | last post by:
I've been doing a little c programming again (ouch!) and it's just hit me why python does not allow assignment inside expressions (as in c): because it is absolutely essential that all assignments...
17
by: Brian Blais | last post by:
Hello, I have a couple of classes where I teach introductory programming using Python. What I would love to have is for the students to go through a lot of very small programs, to learn the...
28
MMcCarthy
by: MMcCarthy | last post by:
Policies below superceded by FAQ Post Course Work Questions and Answers. ADMIN
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.