Language features you should never use? - Stack Overflow most recent 30 from stackoverflow.com2009-11-27T13:23:03Zhttp://stackoverflow.com/feeds/question/312419http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/312419/language-features-you-should-never-use20Language features you should never use?Cruachan2008-11-23T11:41:20Z2009-11-26T23:08:49Z
<p>A recent post about the 'with' statement in Delphi - which in practice I never use because it trades clarity and ease of debugging for superficially 'cleaner' looking code got me thinking; what other language features, in any language, do you think should never be touched? - or at least avoided where at all possible?</p>
<p>The classic example of this would be the COBOL ALTER statement, which dynamically rewrites the executing code to change the destination of a GOTO. Use of ALTER was just about a sackable offense in every COBOL shop I ever worked in.</p>
<p>My supposition would be that as language design is better understood nowadays there may be fewer of these 'features' coming through - but is that true of the newer more exotic paradigms such as the functional programming languages? </p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312422#31242217Answer by Vincent Van Den Berghe for Language features you should never use?Vincent Van Den Berghe2008-11-23T11:47:00Z2008-11-23T11:47:00Z<p>The only thing that comes to mind are GOTO statements :)</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312433#31243327Answer by Stewart Johnson for Language features you should never use?Stewart Johnson2008-11-23T12:04:51Z2008-11-23T12:04:51Z<p>You should always use Option Explicit in Visual Basic (i.e.: you should never use implicit variables).</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312436#31243618Answer by Vinko Vrsalovic for Language features you should never use?Vinko Vrsalovic2008-11-23T12:06:11Z2008-11-23T12:06:11Z<p>I think no language feature should never be used. It's just a matter of knowing when and how to apply each feature. Of course there are features you almost never would want to use, but can still have their place in certain contexts.</p>
<p>Well, as every rule has to have at least one exception, here's one, PHP related:</p>
<ul>
<li>Having register_globals set to on should never happen :-)</li>
</ul>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312438#31243853Answer by Jon Skeet for Language features you should never use?Jon Skeet2008-11-23T12:10:02Z2008-11-23T21:50:22Z<p>In Java, calling a static method via a reference. My favourite example:</p>
<pre><code>Thread t = new Thread(someRunnable);
t.start();
t.sleep(1000); // This doesn't do what it looks like...
</code></pre>
<p>It makes the <em>current</em> thread sleep, not the newly created one. Thread.sleep is a static method and only ever affects the calling thread - but this snippet makes it <em>look</em> likes it's telling a different thread to sleep.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312440#3124402Answer by Jon Skeet for Language features you should never use?Jon Skeet2008-11-23T12:11:17Z2008-11-23T12:52:03Z<p>In C#, <a href="http://msdn.microsoft.com/en-us/library/ms173212.aspx" rel="nofollow">extern aliases</a>. These allow you to cope with the situation where you have two different assemblies both containing a type with the same name, including namespace, and you want to refer to a particular one of them. Avoid wherever possible.</p>
<p>EDIT: Just to be clear, this isn't a fault in the language. The feature allows you to get out of otherwise intractable situations. It's just a feature you don't want to <em>have</em> to use.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312451#3124513Answer by Gamecat for Language features you should never use?Gamecat2008-11-23T12:27:00Z2008-11-23T12:27:00Z<p>I agree with Vinko Vrsalovic. And my exception is the Delphi With statement.
The only time I used it was to create a test set for the delphi frontend of my metrics tool. </p>
<p>The with statement has a very big "I want to shoot myself in the foot" factor. Which is fine if you are the only developer, but in a team it can be very nasty.</p>
<p>Maybe there should be a compiler option that gives warnings if with statements are encountered ;-).</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312474#31247417Answer by Johannes Schaub - litb for Language features you should never use?Johannes Schaub - litb2008-11-23T12:54:31Z2008-11-23T12:54:31Z<p>You should <strong>never</strong> do <code>using namespace std;</code> in a header file in global scope in C++. </p>
<p>And you should be shocked if you see <code>using namespace std;</code> in global scope. Never do it, it throws away the names scope separation gained using namespaces.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312475#312475-3Answer by ripper234 for Language features you should never use?ripper2342008-11-23T12:54:55Z2008-11-23T12:54:55Z<p>Multiple Inheritance in C++, of course. There's a good reason it's been dropped in C#/java.</p>
<p>(Though "every rule does has exceptions, including this one").</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312483#3124831Answer by petr k. for Language features you should never use?petr k.2008-11-23T13:02:03Z2008-11-23T13:02:03Z<p>In C#, you should (almost) never use <strong>[assembly: ComVisible(true)]</strong> in your AssemblyInfo.cs. It is far too easy to generate wads of COM coclasses and interfaces you're not even aware of. After all, FxCop itself considers it bad practice and recommends specyfing the [ComVisible] attribute on specific classes and interfaces explicitly.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312484#31248411Answer by Sherm Pendley for Language features you should never use?Sherm Pendley2008-11-23T13:02:41Z2008-11-23T21:44:42Z<p>You should never write Perl code without:</p>
<pre><code>use warnings;
use strict;
</code></pre>
<p>Also, you should never use a <a href="http://en.wikipedia.org/wiki/JAPH" rel="nofollow">JAPH</a> in production code. Those are strictly for use in <a href="http://en.wikipedia.org/wiki/Signature_block" rel="nofollow">.signature</a> files and <a href="http://en.wikipedia.org/wiki/Perl_golf#Perl_golf" rel="nofollow">golf</a>. Their misuse elsewhere is, IMHO, one of the main reasons for Perl's reputation as a "write-only" language.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312489#31248914Answer by danimajo for Language features you should never use?danimajo2008-11-23T13:10:17Z2008-11-23T13:10:17Z<p>Global Variables.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312501#3125013Answer by Bill the Lizard for Language features you should never use?Bill the Lizard2008-11-23T13:16:19Z2008-11-23T13:16:19Z<p>It's not a language feature, but a compiler option that you should never use.</p>
<pre><code>javac -nowarn myApp.java
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312531#3125311Answer by RoadWarrior for Language features you should never use?RoadWarrior2008-11-23T13:41:14Z2008-11-23T13:41:14Z<p>I cannot find a good use for the <strong>Shadows</strong> keyword in VB .NET.</p>
<p><strong>Shadows</strong> is the same as declaring a method with no modifiers, which VB's compiler doesn't otherwise allow. It creates a new name, effectively blocking all all of the overloads with that name in the inheritance hierarchy. I don't think there is a C# equivalent - for example, C#'s <strong>new</strong> is not equivalent, as it targets the hidebysig IL construct, like VB's <strong>Overloads</strong>. </p>
<p>If you only have one overload when you use <strong>Shadows</strong>, the behaviour matches <strong>Overloads</strong>. But maintenance developers will find out that new overloads are also hidden!</p>
<p>What makes this worse is that <strong>Shadows</strong> is the default. I think this may be because of VB's way of resolving an overloaded method. Unlike C#, the VB compiler does a depth-first analysis of the entire inheritance chain. Having <strong>Shadows</strong> as the default prevents base type changes modifying the behaviour of your existing code. I suppose this is a necessary evil in a world where you may not be able to control base type behaviour.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312533#3125334Answer by Brian Rasmussen for Language features you should never use?Brian Rasmussen2008-11-23T13:42:53Z2008-12-11T11:46:52Z<p>In C# there are a number of caveats, e.g.</p>
<p>Never lock on a value type - the <code>lock</code> keyword prevents you from doing this, but if you call <code>Monitor.Enter()</code> directly, you'll be locking on a boxed instance of the value. Fortunately when you try to call <code>Monitor.Exit()</code> on a boxed value, you'll get an exception.</p>
<p>Never lock on a literal string. In C# literal strings are interned for the entire application. Thus local strings, strings in different AppDomains etc. are all shared. This could lead to weird deadlock issues.</p>
<p>Be very careful with finalizers and try to avoid them if possible. One problem: an unhandled exception in a finalizer will take down the entire process.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312543#31254312Answer by Mike for Language features you should never use?Mike2008-11-23T14:01:03Z2008-11-23T14:01:03Z<p>Never use the C / C++ language feature of chaining code in a switch statement by appending code to a previous switch case:</p>
<p>OK - </p>
<pre><code>switch (x) {
case 1:
case 2:
case 3:
...
break;
case 4:
...
break;
}
</code></pre>
<p>Evil -</p>
<pre><code>switch (x) {
case 1:
case 2:
case 3:
...
case 4:
... // Add to the 1,2,3 case here
break;
}
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312547#312547-2Answer by eed3si9n for Language features you should never use?eed3si9n2008-11-23T14:05:41Z2008-11-24T05:09:32Z<p><code>C</code> interprets nonzero values to signify <code>true</code> and zero values to signify <code>false</code>.
You shouldn't have to rely on this feature any more.</p>
<p><strong>Edit</strong>: Number of people are not buying my disliking nonzero-as-true. What about <a href="http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha#163035">this</a>?</p>
<pre><code>if (status = UNDER_ATTACK) {
launch_nuclear_missiles();
}
</code></pre>
<p>or <a href="http://stackoverflow.com/questions/163026/what-is-your-least-favorite-syntax-gotcha#163059">this</a>?</p>
<pre><code>if(x & 2 == 1)
{
launch_nuclear_missiles();
}
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312566#31256628Answer by Robert Gamble for Language features you should never use?Robert Gamble2008-11-23T14:29:37Z2008-11-23T14:29:37Z<p><strong>In C:</strong></p>
<ul>
<li><p>Taking advantage of the commutative property of array indexing to swap the array name and the index:</p>
<pre><code>int array[5];
3[array] = 0;
</code></pre></li>
<li><p>Using the preprocessor to try to turn C into another language:</p>
<pre><code>#define IF if (
#define BEGIN {
</code></pre></li>
<li><p>The register keyword, which at best is likely to be ignored, at worst it will make performance worse, and in either case you lose the ability to take the address of your variable.</p></li>
<li><p>The auto keyword, simply no need to use this.</p></li>
<li><p>More of a library issue than a language feature but the gets() function should never be used.</p></li>
</ul>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312637#3126373Answer by Ali A for Language features you should never use?Ali A2008-11-23T15:42:50Z2009-01-14T22:10:23Z<p>I find Python's backtick repr quite nasty (and especially since there are better ways to do it.)</p>
<pre><code>`some_var` == repr(some_var) # yikes Batman (gone in 3.0 - thanks Greg)
</code></pre>
<p>And then there is this implicit string concatenation thing:</p>
<pre><code>>>> 'a''b''c' # holy moly Robin
'abc'
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312647#312647-6Answer by Itay for Language features you should never use?Itay2008-11-23T15:52:10Z2009-07-25T06:28:42Z<p>C++: protected inheritance</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312697#3126970Answer by patricksweeney for Language features you should never use?patricksweeney2008-11-23T16:43:54Z2008-11-23T16:43:54Z<p>In PHP, never use <strong>exec</strong> or even <strong>passthru</strong>. Of course, most languages have some sort of contemporary to these functions. </p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312733#3127334Answer by JW for Language features you should never use?JW2008-11-23T17:19:37Z2008-11-23T17:19:37Z<p>Another PHP one: <a href="http://us.php.net/magic_quotes" rel="nofollow">magic quotes</a>. It's a terrible idea, and you still see lots of web apps that use it. Any time you type <strong>"</strong> and it turns into <strong>\"</strong>, someone's probably got magic quotes turned on.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312760#3127605Answer by PhiLho for Language features you should never use?PhiLho2008-11-23T17:49:11Z2008-11-23T17:49:11Z<p>I won't say <em>you</em> should never use it (I am not dogmatic) but I try hard not to use automatic conversion of some values to booleans (NULL as false in C, nil as false in Lua, undefined or null as false in JavaScript, etc.).<br />
Ie. I prefer to do an explicit comparison against the value and reserve tests like if (foo) to pure booleans.<br />
It results in slightly more verbose code, but might avoid surprises...</p>
<p>In the same spirit, even though I would indulge in an occasional <code>while (*p++ = *q++)</code>, which is at least a well known pattern, I would avoid constructs like <code>if (a = b)</code> even if it has the intended behavior...</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312763#31276314Answer by Vishu for Language features you should never use?Vishu2008-11-23T17:51:31Z2008-11-23T17:51:31Z<p>Never omit curly braces when the target statement is on the next line</p>
<p>OK:</p>
<pre><code>if(foo) potato
</code></pre>
<p>OK:</p>
<pre><code>if(foo) {
potato
}
</code></pre>
<p>NEVER:</p>
<pre><code>if(foo)
potato
</code></pre>
<p>when there's other stuff going on, it's too easy to miss that potato depends on foo.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/312926#3129262Answer by smo for Language features you should never use?smo2008-11-23T20:35:41Z2008-11-23T20:35:41Z<p>I don't think there's many cases of when something should truly never be used, especially something so benign as a "with" statement (especially if it relies on non-idempotent expressions with side-effects).</p>
<p>Most of the issues mentioned amount to taste in formatting and syntactic sugar.</p>
<p>The exception may be if a feature is deprecated and replaced with an equivalent due to e.g. security issues. Even then, if you're dealing with an existing code base, it may not be worth it to go back and change to use the new features.</p>
<p>Some low level features that seem like security problems may be needed to communicate with other components of the system in rare cases (e.g., exec, ActiveX controls, inline assembly, p-invoke, etc). If your application doesn't need to do this, then obviously, don't use it, but it's there for those who do, and they should use it carefully. But saying "never" is way too general.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313152#3131522Answer by porneL for Language features you should never use?porneL2008-11-24T00:11:41Z2008-11-24T00:11:41Z<p><code>with</code> in Javascript. It's a scope obfuscator/polluter and performance killer.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313190#3131900Answer by Jason Baker for Language features you should never use?Jason Baker2008-11-24T00:48:35Z2008-11-24T00:48:35Z<p>I can think of very few reasons to use exception specifications in C++:</p>
<pre><code>void func() throw()
{
}
</code></pre>
<p>(but of course, there really are no nevers)</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313216#3132160Answer by mseery for Language features you should never use?mseery2008-11-24T01:13:26Z2008-11-24T01:13:26Z<p>Bitfields in C. They're not portable, and they can cause concurrency problems (race conditions) when shared between threads.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313222#3132220Answer by Uri for Language features you should never use?Uri2008-11-24T01:17:57Z2008-11-24T01:17:57Z<p>Variable argument lists (...) unless you are writing some low level system API.
In most cases, there is some cohesive intent for these lists so they're better served with a class that can take a range of things and grow its own list if necessary. </p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313261#3132611Answer by Matthewd for Language features you should never use?Matthewd2008-11-24T01:56:51Z2008-11-24T01:56:51Z<p><a href="http://www.php.net/language.variables.variable" rel="nofollow" title="Variable variables">Variable variables</a> in PHP. </p>
<pre><code>$foo = 'Hello World!';
$bar = 'foo';
// prints Hello World
echo $$bar;
</code></pre>
<p>Makes debugging complicated, especially when they are combined with calling functions by name.</p>
<pre><code>function hello()
{
return "Hello World!";
}
$foo = 'hello';
$bar = 'foo';
// prints 'Hello World' too
echo $$bar();
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313508#3135082Answer by mxg for Language features you should never use?mxg2008-11-24T05:49:16Z2008-11-24T05:49:16Z<p>Never rely on the compiler to initialize a variable. For example, never assume that integers are initialized to 0 or pointers to null. It may work fine in the current compiler you are using but could work differently when you port your code to another compiler. And, when initialization doesn't work as you expect, it will likely create a subtle and difficult to detect bug.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313511#3135110Answer by ParseTheData for Language features you should never use?ParseTheData2008-11-24T05:53:52Z2008-11-24T05:53:52Z<p>Personally in Java I do not like do while loops, I seem to be able to use While and For loops just fine, but I wouldn't say you should NEVER use them. </p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/313579#3135790Answer by FL4SOF for Language features you should never use?FL4SOF2008-11-24T07:10:51Z2009-11-26T23:08:49Z<p>All I can add is: try to avoid platform specific APIs (Windows programmers generally don't think much about it, rather Windows is meant for this purpose). Portability is one thing you should keep in mind (as far as you can).</p>
<p>Next thing I can see is scalability. Make sure you don't rely on hard and fast numbers and try to keep your design flexible and agile.</p>
<p>Then make sure your code is understandable. Avoid magic numbers, proper documentation and naming are essential.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/320578#3205781Answer by Rafael Romão for Language features you should never use?Rafael Romão2008-11-26T12:43:50Z2008-11-26T13:09:45Z<p>I don't think any language feature should never be used, but some of them must be used very very carefully.</p>
<p>In C# I think one of that features is the <code>new</code> modifier for non-virtual method overriding. If the programmer does not understand exactly what is happening, it can be dangerous.</p>
<p><code></p>
<pre><code>class Base {
internal virtual void Foo() {
Console.WriteLine("Base.Foo");
}
internal void Bar() {
Console.WriteLine("Base.Bar");
}
}
class Derived : Base {
internal override void Foo() {
Console.WriteLine("Derived.Foo");
}
internal new void Bar() {
Console.WriteLine("Derived.Bar");
}
}
class Program {
static void Main(string[] args) {
Base b = new Derived();
b.Foo();
b.Bar();
Derived d = new Derived();
d.Foo();
d.Bar();
Console.ReadKey();
}
}
/* Prints:
*
* Derived.Foo
* Base.Bar
* Derived.Foo
* Derived.Bar
*/
</code></pre>
<p></code></p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/320597#3205970Answer by Nakul Chaudhary for Language features you should never use?Nakul Chaudhary2008-11-26T12:51:47Z2009-11-26T23:06:16Z<p>In VB.NET, I avoid using <strong>Parse</strong> like Decimal.Parse. </p>
<p>I use <strong>TryParse</strong> instead.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/320622#3206220Answer by Jon Tackabury for Language features you should never use?Jon Tackabury2008-11-26T12:58:50Z2008-11-26T12:58:50Z<p>Don't use any of the new C# 4.0 features... it's like coding with "option explicit" turned off in VB. :) I joke, but seriously, some of these new features scare the crap out of me from a maintenance point of view.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/320713#3207131Answer by Binary Worrier for Language features you should never use?Binary Worrier2008-11-26T13:37:13Z2008-12-09T08:12:29Z<p>Yup. The With statement is a throwback to Pascal, where it wasn't so harmful. It should have been removed from Delphi or reworked. Personally I don't agree with "with" statements (Pascal or Vb) they're sugar are are often misused
e.g.</p>
<ul>
<li>You find yourself glancing (or worse paging) up more
than once trying to figure out which
object you're "With"</li>
<li>You find a nested With (don't get me
started).</li>
<li>You find a block of old well
maintained code, 20 lines long in a
with block and - wait for it - the
"with" object is null and is not
used by any of the code (saw this
about 2 weeks ago and laughed out
loud - it was that or weep)</li>
</ul>
<p>Other than "I'm not with with"</p>
<ul>
<li>Option Strict and Option Explicit
<strong>MUST ALWAYS BE ON</strong> in Vb (I don't care if you can roll feature X in 30 minutes because it relies on late bindings where as it'll take a week if you've to write and implement a heap of interfaces because SWITCH THEM OFF AND YOU WILL LOOSE A FINGER) </li>
<li>Don't Dim x as <strong>new</strong> Y in Vb6
(actually, don't use any VB6 feature if you can get away with it)</li>
<li>C/C++/VB: Don't use Static variables in
procedures</li>
<li>C++ Don't use old ansi string
handling <strong>LEARN THE STL</strong></li>
</ul>
<p>I known there's more rattling around in the back of the ould brain, I'll update this as I think of them</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/320778#3207780Answer by annakata for Language features you should never use?annakata2008-11-26T14:02:20Z2009-11-26T23:04:57Z<p>JavaScript one: never prototype against object.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/321315#3213150Answer by Rafael Romão for Language features you should never use?Rafael Romão2008-11-26T16:27:24Z2008-11-26T16:27:24Z<p>In Java, it is possible to use generic types without to inform the generic parameters:</p>
<pre><code>
public class MyList<T> {
//...
}
</code></pre>
<pre><code>
public class Main {
public static void main(String[] args) {
MyList<String> a = new MyList<String>(); //OK
MyList b = new MyList(); //OK, but should not
}
}
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/321401#3214017Answer by Valerion for Language features you should never use?Valerion2008-11-26T16:55:53Z2008-11-26T16:55:53Z<p>SELECT * </p>
<p>It may be fine for ad-hoc queries, but should never be used in actual code.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/328230#3282300Answer by Einstein for Language features you should never use?Einstein2008-11-30T00:07:07Z2008-11-30T00:07:07Z<p>All forms of popular non-explicit lazy-up-the-stack error handling. People have trouble seeing the aftermath of their use is no different than the shunned GOTO command. Proper coverage is impossible to verify, perfect way to leak all manner of resources (even in garbage collected environments) and contrary to wildly popular opinion stack traces or low level messages simply passed up are ususally chunk full of nonsense which are not in any way useful to most developers let alone end users.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/345800#345800-1Answer by Stroboskop for Language features you should never use?Stroboskop2008-12-06T02:43:46Z2008-12-06T02:43:46Z<p>Never use autoboxing introduced in Java 1.5. </p>
<pre><code>Integer i = getNumber(); // assume this method returns null
int j = i; // boink
</code></pre>
<p>There's really no good use for autoboxing unless you don't understand or don't care about the difference between objects and primitives - and then you better stay away from it anyway.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/354444#354444-1Answer by sli for Language features you should never use?sli2008-12-09T22:15:49Z2008-12-09T22:15:49Z<p>In Python, you should avoid running a bunch of methods on one line. I still do it, though.</p>
<pre><code>" hello\n\n".upper().replace('o','0').lstrip().rstrip()[::-1]
</code></pre>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/391703#3917031Answer by David Poole for Language features you should never use?David Poole2008-12-24T15:48:35Z2008-12-24T15:48:35Z<p>'extern' keyword in C. </p>
<p>C's linker doesn't check if the functions (or variables) match. The function is simply called or the variable used.</p>
<p>A contrived example, </p>
<pre><code>// file1.c written by programmer A.
extern int function_b( void );
int num;
num = function_b();
// file2.c written by programmer B with no knowledge of programmer A.
static int global_b;
int function_b( void ) { return global_b; }
</code></pre>
<p>Now suppose programmer B changes <code>function_b()</code> to take a parameter. Or return an <code>uint64_t</code> instead of an <code>int</code>. </p>
<pre><code>// contrived new file2.c
static uint64_t global_b;
uint64_t function_b( int caller )
{
LOG_CALLER(caller);
return global_b;
}
</code></pre>
<p>We now have a corrupted stack and/or corrupted memory because programmer A's call to <code>function_b()</code> doesn't know <code>function_b()</code> has changed. The C compiler/linker doesn't check.</p>
<p>I see externs in cases where programmers take shortcuts. Instead of using the proper #include file, it's simpler to slap an extern into the code and hope for the best.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/391736#3917363Answer by Jason S for Language features you should never use?Jason S2008-12-24T16:08:45Z2008-12-24T16:08:45Z<p><code>eval</code> in the vast majority of cases in any language that has it (MATLAB, Javascript, etc). There are exceptions like parsing JSON <em>if</em> the input has been properly checked for validity.</p>
<p>It usually presents a security risk and there are often other ways to solve the desired problem. In MATLAB and Javascript there are facilities to get dynamic field names, e.g. if I have a structure <code>S</code> and it has a member <code>somefield</code>, and I have a variable containing the string of a field name <code>v = 'somefield'</code>, then in MATLAB I can access this field with <code>S.(v)</code> and in Javascript I can access this field with <code>S[v]</code>. No need to call eval() in either place.</p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/391754#3917541Answer by Slapout for Language features you should never use?Slapout2008-12-24T16:20:31Z2008-12-24T16:20:31Z<p>VB.NET has several "features" to maintain backward compatibility with older VB 6 code. Instead of using these "features" you should probably write your code to do things the .NET way. </p>
http://stackoverflow.com/questions/312419/language-features-you-should-never-use/512525#5125253Answer by Will Harris for Language features you should never use?Will Harris2009-02-04T17:53:25Z2009-02-04T17:53:25Z<p>In Python, multiple wild card imports:</p>
<pre><code>from songsmith import *
from web import *
@publish
def create_bad_song(uri):
return add_soulless_backing(get(uri))
</code></pre>
<p>It makes it difficult to find the source of a name when reading the code. Did <code>get</code> come from <code>songsmith</code> or <code>web</code>?</p>
<p>It is much better to say something like this:</p>
<pre><code>from songsmith import add_soulless_backing
import web
@web.publish
def create_bad_song(uri):
return add_soulless_backing(web.get(uri))
</code></pre>