Berkeley CSUA MOTD:Entry 48202
Berkeley CSUA MOTD
 
WIKI | FAQ | Tech FAQ
http://csua.com/feed/
2025/04/03 [General] UID:1000 Activity:popular
4/3     

2007/9/27-10/2 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages/Python] UID:48202 Activity:moderate
9/27    Ok so to do the equivalent of  the following:
        bool ? a : b
        In Python, it is:
        (bool and [a] or [b])[0]
        Uh, kick ass?
        \_ 99 times out of 100 if you use the trinary operator you are
           doing the wrong thing.
        \_ 99 times out of 100 if you use the ternary operator you are
           doing the wrong thing.  Oh and python should have
           "a if bool else b".
        \_ Python 2.5 adds the ternary operator with the syntax above.  See:
           http://www.python.org/dev/peps/pep-0308
           The and-or trick was the most recognizable way to do this prior to
           2.5.  See:
           http://www.diveintopython.org/power_of_introspection/and_or.html
           This also explains why you need to do the wonkiness with wrapping a
           and b into arrays and then extracting element 0.  Curious, why does
           the pp feel that using the ternary operator is a bad idea? -dans
           \_ http://tinyurl.com/36zdbe (fogcreek.com) -!pp
              \_ Most of this discussion convinces me that the ternary
                 operator is a good thing.  Many of the posters seem to miss
                 the forest for the trees wrt code readability.  At this
                 point, I don't 'parse' the ternary operator, I just think of
                 it as a (slightly) higher-level construct and find it easier
                 to read and understand.  YMMV -dans
                 \_ bad coders : ternary operator :: Dubya : U.S. presidency
                    \_ bad coders : code :: Dubya : U.S. presidency
                       "However, there is already controversy surrounding the
                       grant. Explains Dean Clancy, "Ok, so we got all this
                       deodorant and shaving equipment now. So-fricking-what?
                       What I want to know is how we are going to get this
                       stuff on the engineers. Whenever I ask an engineer in
                       Soda, "Why do you smell like Rick Starr's underwear,
                       only worse?", they always give me some story about
                       being allergic to deodorant or not having enough time
                       to shower. Like I always say, you can lead a mouse to a
                       window but you can't always make the mouse click on the
                       window."
                       Telling bad coders to avoid the ternary operator is
                       like giving deodorant to EECS students.  It doesn't
                       address the core problem. -dans
                       \_ What about L&S CS?  Are they allowed to bathe?
                          \_ I'm not aware of there being any department
                             strictures forbidding EECS students to bathe.  I
                             don't know if I'm typical of L&S CS students, but
                             I managed to bathe more or less regularly (or
                             date hot women who have a thing for, possibly
                             stinky, geeks).  I suppose there was that one
                             semester Paolo took CS 150 and didn't leave the
                             lab for a week, but I definitely think that's an
                             outlier data point. -dans
                             \_ dans is channeling tjb.
                                \_ i miss tjb.  can we get him back?
                                   \_ Seconded.  The man's a national
                                      treasure.
                             \_ I think we can all agree that paolo is an outlier
                                data point.
                                \_ Nah, I'm not going to try to freestyle.
                                   Though I am pretty white. -dans
                             \_ I think we can all agree that paolo is an
                                outlier data point.
2025/04/03 [General] UID:1000 Activity:popular
4/3     

You may also be interested in these entries...
2011/3/7-4/20 [Computer/SW/Languages/C_Cplusplus] UID:54056 Activity:nil
3/7     I have a C question.  I have the following source code in two identical
        files t.c and t.cpp:
                #include <stdlib.h>
                int main(int argc, char *argv[]) {
                  const char * const * p1;
                  const char * * p2;
	...
2004/12/14-15 [Computer/SW/Compilers] UID:35291 Activity:moderate
12/14   If I have a C function like this
        void foo(void) {
          static const char unused1[] = "one";
          const char * const unused2 = "two";
          ...... some code ......
          return;
	...
2004/8/10-11 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Compilers] UID:32805 Activity:high
8/10    C question.  Is there anything wrong with the following?
        const my_struct_t **pp;
        pp = malloc(sizeof(my_struct_t *));
        pp = realloc(pp, sizeof (my_struct_t *) * 2);
        "gcc -Wall" doesn't complain.  But the M$ compiler (cl.exe) complains
        about the realloc line:
	...
2004/5/28-29 [Computer/SW/Compilers] UID:30481 Activity:nil
5/28    I just found out that bison inserts these lines of code
                #ifndef __cplusplus
                #ifndef __STDC__
                #define const
                #endif
                #endif
	...
2003/12/8-9 [Computer/SW/Languages/C_Cplusplus] UID:11356 Activity:nil
12/8    c++ question, how do I overload << in my class so it will handle
        endl? ie: myclass << "some string" << endl
        I know how to do the "some string" part:
                myclass & operator << (const char * s);
        what about endl?
        Thanks!!
	...
2003/9/10 [Computer/SW/Languages/C_Cplusplus] UID:29529 Activity:nil
9/10    Stupid question: how do I reference a C callback?
        int mycompare(void const *a, void const *b) { ... }
        qsort(msg, sizeof(Msg), numMsgs, mycompare);
        I get
        "Type error in argument 4 to `qsort'; calling convention mismatch."
        \_ There's nothing wrong in the you reference it.  However, you should
	...
2003/4/22-23 [Computer/SW/Languages/C_Cplusplus] UID:28189 Activity:insanely high
4/22    Anyone know a good link that explains all of C++'s use of the
        keyword mconst?
        \_ http://www.parashift.com/c++-faq-lite
           Search for const in the text box.
           Search for mconst in the text box.
           \- perfection
	...
2002/7/13-15 [Computer/SW/Languages/C_Cplusplus] UID:25351 Activity:moderate
7/13    how do i pass variables to the system in C ?  e.g.
         system("echo input is %s", argv[1]);
        results in "input is %s" but I want the system to see argv[1]
        (I know i can just use printf, but not for what i really want to do).
        \_ sprintf into array, pass array to system?
        \_ so write your own function that takes a variable number of
	...
2001/9/23-24 [Computer/SW/Languages/C_Cplusplus] UID:22600 Activity:moderate
9/23    let's say there's a C library you want to use called libmdn.so.
        I think to load it you'd go something like:
        static { System.loadLibrary("mdn"); }
        However, let's say that a function call looked like this:
        mdn_result_t mdn_encodename(int actions, const char
        *from, char *to, size_t tolen)
	...
2001/3/17-18 [Computer/SW/Languages/C_Cplusplus] UID:20827 Activity:high
3/16    Why does so much C sample code use #define instead of const?
        \_ because any good C code will use a bunch of preprocessor
           anyways. you can't be a good C programmer and eschew the
           preprocessor. For that, you need a language which fills those
           gaps with other constructs (c++ templates go a long way to
           obviate the need for preprocessor for example). you
	...
2000/6/21-22 [Computer/SW/Languages/C_Cplusplus] UID:18506 Activity:very high
6/20    I have a variable inside a struct.  I want to be able to initialize
        that variable ONCE and not write to it again.  Any subsequent writes
        should not be permitted.  Is there a way to do that in C?  I know
        about "const int foo = 5;" but the value I need to pass in is dynamic
        and happens at runtime.  Declaring a variable as const doesn't let
        me assign anything to it at all.  Thanks.
	...
2013/4/9-5/18 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Apps, Computer/SW/Languages/Perl] UID:54650 Activity:nil
4/04    Is there a good way to diff 2 files that consist of columns of
        floating point numbers, such that it only tells me if there's a
        difference if the numbers on a given line differ by at least a given
        ratio?  Say, 1%?
        \_ Use Excel.
           1. Open foo.txt in Excel.  It should convert all numbers to cells in
	...
2012/12/18-2013/1/24 [Computer/SW/Languages/Perl] UID:54561 Activity:nil
12/18   Happy 25th birthday Perl, and FUCK YOU Larry Wall for fucking up
        the computer science formalism that sets back compilers development
        back for at least a decade:
        http://techcrunch.com/2012/12/18/print-happy-25th-birthday-perl
        \_ I tried to learn Perl but was scared away by it.  Maybe scripting
           lanauages have to be like that in order to work well?
	...
2011/12/23-2012/2/6 [Computer/SW/Languages/Python] UID:54272 Activity:nil
12/23   In Python, why is it that '好'=='\xe5\xa5\xbd' but
        u'好'!='\xe5\xa5\xbd' ? I'm really baffled. What
        is the encoding of '\xe5\xa5\xbd'?
        \_ '好' means '\xe5\xa5\xbd', which is just a string of bytes; it has
           length 3.  Python doesn't know what encoding it's in.  u'好' means
           u'\u597d', which is a string of Unicode characters; it has length 1,
	...
2011/4/16-7/13 [Computer/SW/Languages/Python] UID:54086 Activity:nil
4/16    Whoa, I just heard that MIT discontinued 6.001 (classic scheme)
        to 6.01. In fact, 6.00, 6.01 and 6.02 all use Python. What the
        hell? What has the world become? It's a sad sad day. SICP forever!
        \_ old story, they've ditched that shitty book and lang for a while.
        \_ I used to think scheme was cool, then I saw Ka Ping Yee's
           "Beautiful Code" class aka 61a in python, and converted.
	...
2011/2/24-4/20 [Computer/SW/Languages/Java] UID:54048 Activity:nil
2/24    Go Programming Language.  Anyone here use it?  It kind of
        reminds me of java-meets python, and well, that is fitting given it's
        a GOOG product.  What is so special about it?
        \_ as I understand it, it's a suitable OOP-y systems language with more
           structure than C, less complexity than C++, and less overhead than
           Java/Python.
	...
2011/3/31-4/20 [Computer/SW/Languages/Python] UID:54070 Activity:nil
3/20    Has anyone here had success in using python 3.0?  Any gotchas
        to worry about? I've got an entire set of apps in python 2.x
        and am wondering if it's worth it to upgrade?
	...
2010/8/8-9/7 [Computer/SW/Languages/C_Cplusplus, Computer/SW/Languages/Web] UID:53914 Activity:nil
8/8     Trying to make a list of interesting features languages have
        touted as this whole PL field comes around, trying to see if they
        have basis in the culture of the time: feel free to add some/dispute
        1970 C, "portability"
        1980 C++, classes, oop, iterators, streams, functors, templates
             expert systems
	...
2010/8/12-9/7 [Computer/SW/Languages/Perl] UID:53922 Activity:nil
8/12    Ruby coders, do you mostly DIY your stuff or use the ruby libs out
        there?   How is their quality compared to other libs you have used
        for other langs?  Thx.
        \_ I use Ruby for hobby stuff, etc.  I use libraries for system stuff
           (web access, process, etc.) but that's about it.  Perl libraries are
           much better/more complete.  I assume because of the maturity and
	...
Cache (1117 bytes)
www.python.org/dev/peps/pep-0308 -> www.python.org/dev/peps/pep-0308/
text/plain Created: 7-Feb-2003 Post-History: 7-Feb-2003, 11-Feb-2003 Adding a conditional expression On 9/29/2005, Guido decided to add conditional expressions in the form of "X if C else Y". Previous community efforts to add a conditional expression were stymied by a lack of consensus on the best syntax. That issue was resolved by simply deferring to a BDFL best judgment call. The decision was validated by reviewing how the syntax fared when applied throughout the standard library (this review approximates a sampling of real-world use cases, across a variety of applications, written by a number of programmers with diverse backgrounds). This is because lambda binds less tight than the if-else expression, but in this context, the lambda could already be followed by an 'if' keyword that binds less tightly still (for details, consider the grammar changes shown above). However, in Python 25, a slightly different grammar is used that is more backwards compatible, but constrains the grammar of a lambda used in this position by forbidding the lambda's body to contain an unparenthesized condition expression.
Cache (1885 bytes)
www.diveintopython.org/power_of_introspection/and_or.html
Dive Into Python Python from novice to pro Find: Search 46 The Peculiar Nature of and and or * 461 Using the and-or Trick In Python, and and or perform boolean logic as you would expect, but they do not return boolean values; instead, they return one of the actual values they are comparing. Chapter 5 If all values are true in a boolean context, and returns the last value. In this case, and evaluates 'a', which is true, then 'b', which is true, and returns 'b'. This distinction is important if some values can have side effects. Here, the function sidefx is never called, because or evaluates 'a', which is true, and returns 'a' immediately. If you're a C hacker, you are certainly familiar with the bool ? a : b expression, which evaluates to a if bool is true, and b otherwise. Because of the way and and or work in Python, you can accomplish the same thing. However, since this Python expression is simply boolean logic, and not a special construct of the language, there is one extremely important difference between this and-or trick in Python and the bool ? a : b syntax in C If the value of a is false, the expression will not work as you would expect it to. The and-or trick, bool and a or b, will not work like the C expression bool ? The real trick behind the and-or trick, then, is to make sure that the value of a is never false. By now, this trick may seem like more trouble than it's worth. You could, after all, accomplish the same thing with an if statement, so why go through all this fuss? Well, in many cases, you are choosing between two constant values, so you can use the simpler syntax and not worry, because you know that the a value will always be true. And even if you need to use the more complicated safe form, there are good reasons to do so. For example, there are some cases in Python where if statements are not allowed, such as in lambda functions.
Cache (8192 bytes)
tinyurl.com/36zdbe -> discuss.fogcreek.com/joelonsoftware4/default.asp?cmd=show&ixPost=142517
Do you all have coding standards that require the programmer to write more for the sake of readability? David Seruyange Tuesday, May 18, 2004 I have to admit, it takes a couple seconds to figure out what's going on, but I wouldn't have a hissy over it. Walt Tuesday, May 18, 2004 I think the addition of a few spaces makes it an order of magnitude more readable at first glance, but maybe it's just me: int move = eCommandName == "UP" ? Sometimes helps if you put it in brackets like so and space them a bit better: bar = (foo == 23 ? Imagine if instead of a literal you had: int move = eCommandName == eTagValue ? The question isn't necessarily what it does - the question is: "Are what it does, what I think it does, and what the coder intended all the same thing?" Putting in the parentheses goes a long way towards answering that question. Philo Philo Tuesday, May 18, 2004 The only time we approve ternary is if the 'then/else' part is simple (eg the -1:1 in your case). The last thing I want to see is stuff like: foo = bar == 'joe' ? We don't use the ternary operator, because of readability concerns. In our work, we have software products that are maintained occasionally over periods of 10-15 years. Frequently, the development environment or computer language used vanishes while the product is still economically viable. Our customers are frustrated if we cannot support the software while they can make money selling systems including the software. I am frustrated as well, since selling an old product that is well tested and needs little support provides good profits. Therefore, we are very restrictive regarding programming practices, with the idea that programs should be easy to read and maintain for perhaps two decades, even for someone who never learned the language used. The software should also be easy to mechanically translate from one language to another, should that be needed. In my experience, people that consider themselves software engineers dislike the restrictions. Their view seems to be that programming techniques and creativity in writing software matter, so restrictions are bad. Their view seems to be that a programmer is incompetent that does not know the programming language in detail. The people who have scientific backgrounds like the restrictions. They tend not to be concerned about creativity in programming, but more with product features and capabilities. They like being able to pick up a product written by someone else at the company years ago, and easily add a feature or rework something in it. They want to spend their time on features, such as improving the recording speed of an acquisition system, rather than learning what they consider obscure features of yet another transient computer language. For them, the more brain-dead obvious the code, the better. Dan Brown Tuesday, May 18, 2004 They are kind of hard to debug. With "if/else", the debugger steps on the line that is active. It's not really any harder to use "if/else" and it's easier to understand. Most ternary operators are documented quite well and consistent (I know C/C++ support the same facility, I think Java may be the same) across languages. I know I'd have a hard time working in an environment of "assembly line" programming - what makes me love my job is being creative and solving problems. I know that my falling in love with short, terse code isn't unique - it's the very roots of the definition hacker. I understand that what I write now will come back - the software we write now is going to be in existence probably for a decade so I consider it an act of responsibility to make things "understandable" and well documented. html - programmers have less to do with "hard science" and more to do with creativity than one might initially think. David Seruyange Tuesday, May 18, 2004 In cases like this, I almost always use a function rather than a ternary expression. With a compiler that does inlining, you really don't pay anything in speed, so having the named function is generally a win. Chris Tavares Tuesday, May 18, 2004 How about: boolean isUp = eCommandName=="UP"; Russell Thackston Tuesday, May 18, 2004 Forget my last post, I like Chris' comments. Russell Thackston Tuesday, May 18, 2004 I don't agree that "saves space" is silly. I find that being able to see more code on my screen significantly helps my ability to comprehend it, whether I'm maintaining code or writing new code. For this reason, I favor the ternary operators for simple cases, such as the one presented; it occupies far less vertical space on the screen, leaving more room for the contextual code around it. Rob Warner Tuesday, May 18, 2004 I think ternary operators were great back in the days when when computers had < 8k of memory and ran at 1mhz. I would bet that modern compilers, such as Microsoft's C# compiler generate the same IL code for an equivalent "if" statement. I strongly agree with njkayaker's comment about debugging, but if you want to save verticle space: int move; would be more readable IMHO madmax Tuesday, May 18, 2004 So, combining Chris and Russell, we get: int move = GetMoveAmount( eCommandName ); int GetMoveAmount(char *cmd) { boolean isUp = cmd =="UP"; It might be fun to do a study and see what percentage of ternary operator uses do K&R style bracing. My bet is ternary users tend to do K&R, and non-ternary do Allman. I also bet non-ternary users tend to do huge, beautifully formatted function comments. String @return boolean @author Joe Horker @last_modified January 17th, 2004, 1:02 PM This function takes a String, 's', and returns true if it equals "true" and false if it equals "false". and prone to side effects long term, which might be good or bad. mb Tuesday, May 18, 2004 Brad, good point, bad example on my part. It is far easier to read and I don't have to go treking off to some other function tto find out what the heck is going on. Dennis Atkins Tuesday, May 18, 2004 GetMoveAmount( eCommandName ); The only time I like the ternary operator is in this form: ( ? c : d) And only if it fits cleany in about 40 characters or less. So the first example at the top would be ok if you added parens to make it more obvious. NathanJ Tuesday, May 18, 2004 Of course, the name GetMoveAmount was just what I came up with after only seeing the one expression; hopefully in a real application the function could be named something that fit better with the problem domain. I still say that having a named function rather than an anonymous (and potentially complicated) expression is the way to go. I did not know so many people were just a priori against the ternary operator. I tend to use what makes the most sense to me at the time. One thing I NEVER do is if joe do this rather if(joe){ do } or if it's an assignment and simple: a = true === true ? But that does not mean I ALWAYS use the ternary operator. Personally I happen to like the ternary and I dislike code that is verbose. Don't make a mistake of substituting verbosity for clarity. I think what is true in writing prose is the same in programming. I strive to always put comments which say what I want to do as opposed to describing what I am going to do as that is right in front of your eyes. I think that if I write unobfuscated code yet terse then I or anyone else will understand it quicker. I have taken some code and just erased all the comments and the line breaks and only then would I work on it as I don't like stuff which just gets in the way as code with too many comment always tends to do imho. There are some cases where the ternary operator is required (at least in C++). If you're reference happy (and who isn't), then you can use a ternary operator like this: const string &str=bCondition ? It would be difficult to affect the value of the reference any other way (if-else wont work; Ternary is a fact of life in a C syntax derived language. Prohibiting its use out-right on a project feels akin to prohibiting the use of contractions in English writing. Anonymouche Tuesday, May 18, 2004 Yep, as that points out, a very common and useful use for these things is small chunks of boring string-building code that really shouldn't take up much s...