User Earwicker - Stack Overflowmost recent 30 from stackoverflow.com2009-12-12T05:55:49Zhttp://stackoverflow.com/feeds/user/27423http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1880929/is-code-injection-possible-in-java/1880992#18809923Answer by Earwicker for Is code injection possible in Java?Earwicker2009-12-10T13:33:15Z2009-12-10T13:33:15Z<p>You could write a web service that accepted a Java code snippet, wrapped it in a class/method declaration, saved it to disk, ran the compiler on it and then dynamically loaded and executed the result. So code injection is certainly possible.</p>
<p>But with typical Java implementations, it's perhaps not very efficient because of the relatively heavyweight compilation process (it might still be practical for some apps though).</p>
<p>Code injection is highly relevant with SQL because the "first guess" of many beginners is to use string concatenation to insert variables into a statement. But it rarely crops up as an idea amongst Java programmers. So that's the reason it isn't much of a concern.</p>
<p>If Java compilers become exposed as light-weight library services, then you'd have something much closer to the equivalent of <code>eval</code> and therefore it might start to become a relevant concern.</p>
http://stackoverflow.com/questions/1851589/replace-a-simple-forloop-with-linq/1851700#18517005Answer by Earwicker for replace a simple forloop with linqEarwicker2009-12-05T09:28:19Z2009-12-05T09:44:20Z<p><a href="http://blogs.msdn.com/ericlippert/archive/2009/05/18/foreach-vs-foreach.aspx" rel="nofollow">The advice of Eric Lippert</a> is not to write such loops as expressions.</p>
<p>Only use query expressions if the code does not have side-effects and produces a value.</p>
<p>In this case, you're looping to repeat a statement, which has a side-effect on the console and doesn't return values. So a foreach loop is clearer and is designed specifically for this purpose.</p>
<p>On the other hand, an action (which may have side-effects) can be regarded as a pure value <em>before it is executed</em>. So here's a list of numbers:</p>
<pre><code>List<int> numbers = Enumerable.Range(1, 10).ToList();
</code></pre>
<p>From that we make a list of actions:</p>
<pre><code>List<Action> actions = numbers.Select(n => Console.WriteLine(n)).ToList();
</code></pre>
<p>Although we're dealing with actions that have side effects, we aren't actually running them at all, so any further manipulations on the content of that list are not side-effecting. Then finally when we have the list we need, we can use a forloop to execute it:</p>
<pre><code>foreach (var a in actions)
a();
</code></pre>
<p>And that is such a simple pattern, it could be argued that a <code>RunAll</code> extension method on <code>IEnumerable<Action></code> would be no bad thing. Indeed, the .NET framework has this concept built into it: a multicast delegate is a single thing you can call which executes a bunch of delegates on a list. In the most common use cases (events), those delegates have side-effects.</p>
http://stackoverflow.com/questions/1789087/internal-compiler-variables-appearing-in-the-debugger-locals-pane-with-rhino-etl0Internal compiler variables appearing in the debugger Locals pane with Rhino ETLEarwicker2009-11-24T10:02:52Z2009-12-01T10:39:09Z
<p>If you disassemble C# you often see temporary variables inserted by the compiler with names such as:</p>
<pre><code>CS$1$0000
</code></pre>
<p>But what would cause them to appear in the debugger Locals/Auto panes?</p>
<p>A colleague of mine is trying to maintain a tool written using <a href="http://ayende.com/Blog/archive/2008/01/16/Rhino-ETL-2.0.aspx" rel="nofollow">Rhino ETL</a>. The symbols for his assembly are reported as loaded correctly by the debugger. He can step through the code. But instead of showing his variables in the debugger, it only shows the internal compiler-generated ones.</p>
<p>I suggested he try writing a new console app with the same code in and substituting dummy classes called <code>AbstractOperation</code> and <code>Row</code> to satisfy the compiler (those are classes from the Rhino ETL library). When he tried that, removing all dependencies on Rhino ETL, everything was back to normal in terms of seeing his own variables in the debugger.</p>
<p>He also tried building Rhino ETL from source in the same solution, but that did <em>not</em> fix the problem. So apparently it's <em>not</em> due to a version incompatibility.</p>
<p>His code is inside an iterator method, hence the need for significant reorganising of the code by the compiler. But an iterator method doesn't usually break the debugger!</p>
<p>In this case, it seems that it will break the debugger if it is an <code>override</code> iterator method <em>and</em> the base class is <code>AbstractOperation</code> from the Rhino ETL library.</p>
<p>How can a base class have such an effect on the debugger?</p>
http://stackoverflow.com/questions/1789087/internal-compiler-variables-appearing-in-the-debugger-locals-pane-with-rhino-etl/1825354#18253540Answer by Earwicker for Internal compiler variables appearing in the debugger Locals pane with Rhino ETLEarwicker2009-12-01T10:39:09Z2009-12-01T10:39:09Z<p>Apparently PostSharp was also involved, which rewrites the IL, and when the dependency on PostSharp was removed, the problem went away. Mystery solved.</p>
http://stackoverflow.com/questions/1796055/is-reflection-breaking-the-encapsulation-principle/1796170#17961703Answer by Earwicker for Is Reflection breaking the encapsulation principle?Earwicker2009-11-25T10:58:29Z2009-11-25T10:58:29Z<p>You are right that reflection can be opposed to any number of good design principles, but it can also be an essential building block that you can use to support good design principles - e.g. software that can be extended by plugins, inversion of control, etc.</p>
<p>If you're worried that it represents a capability that should be discouraged, you may have a point. But it's not as convenient to use as true language features, so it is easier to do things the right way.</p>
<p>If you think reflection ought to be <em>impossible</em>, you're dreaming!</p>
<p>In C++ there is no reflection as such. But there is an underlying "object model" that the compiler-generated machine code uses to access the structure of objects (and virtual functions). So a C++ programmer can break encapsulation in the same way. </p>
<pre><code>class RealClass
{
private:
int m_secret;
};
class FakeClass
{
public:
int m_notSecret;
};
</code></pre>
<p>We can take a pointer to an object of type <code>RealClass</code> and simply cast it to <code>FakeClass</code> and access the "private" member.</p>
<p>Any restricted system has to be implemented on top of a more flexible system, so it is always possible to circumvent it. If reflection wasn't provided as a BCL feature, someone could add it with a library using unsafe code.</p>
<p>In some languages there are ways to encapsulate data so that it is not possible <em>within the language</em> to get at the data except in certain prescribed ways. But it will always be possible to cheat if you can find a way to escape out of the language. An extreme example would be scoped variables in JavaScript:</p>
<pre><code>(function() {
var x = 5;
myGetter = function() { return x; };
mySetter = function(v) { x = v; };
})();
</code></pre>
<p>After that executes, the global namespace contains two functions, <code>myGetter</code> and <code>mySetter</code>, which are the only way to access the value of <code>x</code>. Javascript has no reflective ability to get at <code>x</code> any other way. But it has to run in some kind of host interpreter (e.g. in the browser), and so there is certainly some horrible way to manipulate <code>x</code>. A memory corruption bug in a plugin could do it by accident!</p>
http://stackoverflow.com/questions/1720462/image-upload/1720522#17205220Answer by Earwicker for image upload ??????Earwicker2009-11-12T07:30:39Z2009-11-12T07:30:39Z<p>The controller will have a <strong>Request</strong> property, which has a <strong>Files</strong> property.</p>
<pre><code>foreach (string name in Request.Files)
{
HttpPostedFile file = Request.Files[name];
string filePath = Path.Combine(@"C:\Somewhere", Path.GetFileName(file.FileName));
file.SaveAs(filePath);
}
</code></pre>
http://stackoverflow.com/questions/1587120/challenge-c-foreach-before-after-even-odd-last-first/1587155#15871550Answer by Earwicker for Challenge: C# Foreach - Before, After, Even, Odd, Last, FirstEarwicker2009-10-19T05:56:52Z2009-10-19T05:56:52Z<p>By supporting all your requirements in one very flexible method, you end up with the coding equivalent of a Swiss Army knife.</p>
<p>Better to provide all those capabilities as separate components that you can compose to suit each situation.</p>
<p>Linq provides a great starting point. Think of <code>foreach</code> as a way of converting a list of objects into a list of actions. Take that literally: a sequence of <code>Action</code> delegates, or <code>IEnumerable<Action></code>.</p>
<p>To execute a sequence of actions conveniently, you need:</p>
<pre><code>public static void Execute(this IEnumerable<Action> actions)
{
foreach (var a in actions)
a();
}
</code></pre>
<p>Now the problem is simply to provide sequence manipulation (much of which is already in Linq) to let you put together a list of actions according to your requirements, so you can put <code>Execute</code> on the end.</p>
http://stackoverflow.com/questions/1579981/l-value-substr-method-in-c/1580043#15800430Answer by Earwicker for l-value substr method in C++Earwicker2009-10-16T19:44:40Z2009-10-16T19:44:40Z<p>Presumably you want <code>substr</code> to return a string, rather than some other proxy class. You'd therefore need to make your string class capable of holding a pointer to its own copy of the string data and also a pointer to another string object that it was created from (as the return value of <code>substr</code>), along with information about which part of the string it was created from.</p>
<p>This might get quite complicated when you call <code>substr</code> on a string returned from another call to <code>substr</code>.</p>
<p>The complexity is probably not worth the attractiveness of the interface.</p>
http://stackoverflow.com/questions/1576817/mvp-mvvm-filtering-of-lists-who-has-responsibility/1576906#15769060Answer by Earwicker for MVP/MVVM - Filtering of lists, who has responsibility?Earwicker2009-10-16T08:47:18Z2009-10-16T08:47:18Z<p>There is no right technical answer. The aim of the pattern is to split the concerns of functionality and aesthetics, on the basis that an artistic designer person doesn't understand how to implement functionality, and UIs are hard to test.</p>
<p>But if you can parameterise the filtering to something very simple, e.g. a text property called "Region" that can be set to "Europe", "North America", "Aisa", etc. that's pretty easy to understand, and is independently testable. It lets you put a tiny bit of control over functionality (in a very limited sense) into the view. If that has some value to your efforts, then do it. If it doesn't, don't.</p>
<p>And ultimately, if trying to apply this pattern is causing you to pause and wonder about philosophical distinctions, at the expensive of productivity, then it's not helping you.</p>
http://stackoverflow.com/questions/1573268/c-delegates-real-world-usage/1573379#15733792Answer by Earwicker for C# Delegates Real World UsageEarwicker2009-10-15T16:08:15Z2009-10-15T16:08:15Z<p>If you imagine C# without delegates, you would commonly encounter situations where you have classes or interfaces with one method. The name of that method is redundant. e.g.</p>
<pre><code>public interface IGetMail
{
Mail JustGetTheMail();
}
</code></pre>
<p>The interface is all about that one method. A reference to an object of that type is really no more than a reference to a single callable method. The calling code:</p>
<pre><code>Mail m = getMail.JustGetTheMail();
</code></pre>
<p>could be abreviated to: </p>
<pre><code>Mail m = getMail();
</code></pre>
<p>The compiler could do that as "syntactic sugar" without any ambiguity, because there's only one method you could possible call on that <code>getMail</code> reference.</p>
<p>So let's add that feature to our C# compiler. Now, when declaring these types, we could make that a little neater as well. We don't need to specify the method name when calling it, so why should we have to give the method a name in the first place?</p>
<p>Let's pick a standard method name, <code>Invoke</code>, i.e.</p>
<pre><code>public interface IGetMail
{
Mail Invoke();
}
</code></pre>
<p>We'll add some more syntactic sugar to allow us to write that as:</p>
<pre><code>public delegate Mail GetMail();
</code></pre>
<p>Hey presto. We've added delegates to our C# compiler.</p>
<p>(Technically the CLR is also aware of delegates, and so rather than generating an interface, the C# compiler generates a special "delegate" type, which has support for asynchronous invocation, and manipulating an immutable list of delegates and treating them as a single reference; but in a basic form it could have been done with interfaces. There is a proposal to do that for Java).</p>
<p>We can then go further and add anonymous delegates - making them succinct to implement in a way that interfaces are not.</p>
<p>So to answer your question - any time where your interface has one method, it could be a delegate, and you'll be able to seriously cut down the amount of junk code you have to write.</p>
http://stackoverflow.com/questions/1573254/applying-group-by-in-linq/1573321#15733211Answer by Earwicker for Applying Group By in LINQEarwicker2009-10-15T15:59:04Z2009-10-15T15:59:04Z<p>What went wrong depends on what you wanted to do!</p>
<p>The sequence you get back after grouping is not a flat sequence of the original objects (so in your case, it's not a sequence of strings). Otherwise how would they have been grouped?</p>
<p>Maybe given that you apparently expected a flat list of strings, you actually wanted to order them by length:</p>
<pre><code>var collection = new[] {"five","four","ten","one"};
var byLength = collection.OrderBy(s => s.Length);
foreach (var s in GroupedValues)
Console.WriteLine(s);
</code></pre>
<p>Or if you wanted to group them, then you have to deal with each group in turn, and each group is a separate list of strings:</p>
<pre><code>foreach (var g in GroupedValues)
{
Console.WriteLine("Strings of length " + g.Key + ":");
foreach (var s in g)
Console.WriteLine(" " + s);
}
</code></pre>
http://stackoverflow.com/questions/1569312/setting-list-extends-interface1/1569339#15693393Answer by Earwicker for Setting List<? extends Interface1>Earwicker2009-10-14T22:21:14Z2009-10-14T22:21:14Z<p>In your <code>Order</code> interface definition, the methods look like a pair of get/set methods i.e. logically a property. In which case they need to have the same type. You need to tie them together via a named type parameter:</p>
<pre><code>public interface Order<T extends OrderItem> {
public List<T> getItems();
public void setItems(List<T> items);
}
</code></pre>
<p>Not entirely sure if this is the right syntax in Java, but basically both methods must end up referring to the exact same type.</p>
http://stackoverflow.com/questions/1558679/is-it-possible-to-cast-a-graph-of-objects/1558987#15589871Answer by Earwicker for Is it possible to cast a graph of objects?Earwicker2009-10-13T08:49:23Z2009-10-13T08:49:23Z<p>In a comment under your original question, you say:</p>
<blockquote>
<p>The reason for the cast is that the
object graph starts in application A
the object graph gets serialized and
passed to appliaction B or application
C. Appplication B and C extend the
object graph for its own purposes.
Application A is not aware of
Application B or C or what Application
B and C are doing to the object graph.
Application B and C are vastly
different applications</p>
</blockquote>
<p>And yet in the question you say a good solution:</p>
<blockquote>
<p>Does not modify the Clients or Address
objects</p>
</blockquote>
<p>A cast isn't able to add capabilities to an object. The object already has to have those capabilities.</p>
<p>So it sounds like you don't want to change the types, you just want to add extra facilities to those types within certain areas of your solution.</p>
<p>So you need <a href="http://msdn.microsoft.com/en-us/library/bb383977%28loband%29.aspx" rel="nofollow">extension methods</a>.</p>
<p>You'd keep the types <code>Client</code> and <code>Address</code>, but add additional facilities via extension methods:</p>
<pre><code>public static class MyExtensions
{
public static void SendLetter(this Address address, string messageBody)
{
// blah
}
}
</code></pre>
<p>This allows you to write:</p>
<pre><code>someClient.Addresses[0].SendLetter("Dear Sir, K THX BAI");
</code></pre>
<p>You may need to store extra data along with each <code>Address</code> object. Probably the most convenient off-the-shelf solution to this is to make <code>Address</code> derive from <a href="http://msdn.microsoft.com/en-us/library/system.windows.dependencyobject.aspx" rel="nofollow">DependencyObject</a>, which allows you to stash extra data, using an instance of <a href="http://msdn.microsoft.com/en-us/library/ms750428.aspx" rel="nofollow">DependencyProperty</a> as the key:</p>
<pre><code>public static class MyExtensionsWithData
{
// declare one of these for each "data slot" you'll be using
public static readonly DependencyProperty PhoneProperty =
RegisterAttached("PhoneNumber",
typeof(string),
typeof(MyExtensionsWithData));
public static void SetPhoneNumber(this Address address, string phone)
{
address.SetValue(PhoneProperty, phone);
}
public static string GetPhoneNumber(this Address address)
{
return (string)address.GetValue(PhoneProperty);
}
}
</code></pre>
<p>This way, you can effectively add new properties to existing object, and can use them like this:</p>
<pre><code>// set
someClient.Addresses[0].SetPhoneNumber("5550945793847");
// get
string phoneNum = someClient.Addresses[0].GetPhoneNumber();
</code></pre>
http://stackoverflow.com/questions/1550910/c-and-java-performance/1550926#155092610Answer by Earwicker for C++ and Java performanceEarwicker2009-10-11T15:14:58Z2009-10-11T15:14:58Z<p>You have to be careful with performance tests because it's very easy to deceive yourself or not compare like with like.</p>
<p>However, I've seen similar results comparing C# with C++, and there are a number of well-known blog posts about the astonishment of native coders when confronted with this kind of evidence. Basically a good modern generational compacting GC is very much more optimised for lots of small allocations.</p>
<p>In C++'s default allocator, every block is treated the same, and so are averagely expensive to allocate and free. In a generational GC, all blocks are very, very cheap to allocate (nearly as cheap as stack allocation) and if they turn out to be short-lived then they are also very cheap to clean up.</p>
<p>This is why the "fast performance" of C++ compared with more modern languages is - for the most part - mythical. You have to hand tune your C++ program out of all recognition before it can compete with the performance of an equivalent naively written C# or Java program.</p>
http://stackoverflow.com/questions/1550329/how-can-i-indent-cout-output/1550334#15503349Answer by Earwicker for How can I indent cout output?Earwicker2009-10-11T10:11:53Z2009-10-11T10:11:53Z<p>You can construct a string to contain a number of repitions of a character:</p>
<pre><code>std::cout << std::string(level, '-') << root->value << std::endl;
</code></pre>
http://stackoverflow.com/questions/1549349/callbacks-asynchronous-method-calls-within-a-loop/1549378#15493783Answer by Earwicker for Callbacks (Asynchronous Method Calls) within a LoopEarwicker2009-10-10T23:31:41Z2009-10-10T23:31:41Z<p>The only loop-specific issue is that if you use anonymous methods that refer to loop variables, each time around the loop an instance of the anonymous method object will be created but they will all refer to the same loop variable, so they will see it change its value as the loop executes. So make a copy of the loop variable inside the loop.</p>
<pre><code>foreach (var thing in collection)
{
var copy = thing;
Action a = () =>
{
// refer to copy, not thing
}
}
</code></pre>
http://stackoverflow.com/questions/1549286/c-foreach-behavior-with-derived-classes/1549298#15492982Answer by Earwicker for C# foreach behavior with derived classes?Earwicker2009-10-10T22:47:04Z2009-10-10T22:47:04Z<p>I personally use <code>var</code> as the loop variable in <code>foreach</code> under all circumstances, to avoid any possibility of an invalid runtime cast. That way, the type of the loop variable will be the static type of the collection's items; if you want something else, use <code>OfType</code> to perform a safe filtering cast.</p>
<p><a href="http://smellegantcode.wordpress.com/2009/08/05/how-var-fixes-a-type-hole-in-c/" rel="nofollow">Some more explanation here.</a></p>
http://stackoverflow.com/questions/1549198/finding-all-namespaces-in-an-assembly-using-reflection-dotnet/1549210#15492103Answer by Earwicker for Finding all Namespaces in an assembly using Reflection (DotNET)Earwicker2009-10-10T22:07:59Z2009-10-10T22:07:59Z<p>Namespaces are really just a naming convention in type names, so they only "exist" as a pattern that is repeated across many qualified type names. So you have to loop through all the types. However, the code for this can probably be written as a single Linq expression.</p>
http://stackoverflow.com/questions/1085134/why-is-c-relatively-harder-to-use-bad-choice-for-a-beginner/1087273#10872731Answer by Earwicker for Why is C++ relatively "harder" to use/bad choice for a beginner?Earwicker2009-07-06T14:26:24Z2009-10-09T20:14:48Z<blockquote>
<p>In fact, when I look at C# or Java
code, it seems restrictive - why
should I have to write a class to
print "hello world?"</p>
</blockquote>
<p>That's not restrictive at all. It's just a bit of extra boilerplate; it doesn't stop you doing anything at all.</p>
<p>In fact, it's not really true to say that you have to "write a class" in any creative sense. You don't have to think about it at all, and a decent IDE generates it for you anyway.</p>
<p>There are genuine ways in which Java and C# restrict you, but only from things like random access to the whole of memory or unchecked array access (same thing), that are generally only needed in realtime, embedded or kernel-mode programming, and not even always then.</p>
<p>(And in fact C# has an <code>unsafe</code> block feature in which you can do those things, so it's not really restricted at all, although it's best to avoid using them anyway.)</p>
<p>Once you've overcome the challenging hurdle (!) of dealing with:</p>
<pre><code>public class App
{
public static void Main(string[] args)
{
}
}
</code></pre>
<p>You should find that a lot of benefits begin to become apparent - especially in C#, which has a number of great features that Java lacks.</p>
<p>These are some of the things I've come to happily rely on since adopting C#:</p>
<ul>
<li>rich reflection at runtime</li>
<li>runtime-type safety with no holes (disallowing casting between unrelated types)</li>
<li>dynamic libraries as a built-in concept</li>
<li>built-in garbage collection</li>
<li>bounds-checking at every level</li>
<li>a vast ecosystem of ready-to-use libraries designed to take advantage of all the above</li>
</ul>
<p>And those are just the things that Java also has. In C# the functional style enabled by lambdas and iterator methods is like a different world of power and expressiveness altogether.</p>
http://stackoverflow.com/questions/1537517/how-to-remove-unneccessary-list-using-lambda-and-functional-c-paradigm/1537565#15375653Answer by Earwicker for How to Remove unneccessary list using lambda and functional C# paradigmEarwicker2009-10-08T12:43:32Z2009-10-08T14:57:53Z<p>The ForEach extension method usually isn't worth the bother.</p>
<p><a href="http://blogs.msdn.com/ericlippert/archive/2009/05/18/foreach-vs-foreach.aspx" rel="nofollow">Eric Lippert has blogged about it</a>, and his philosophical objection to it is that it looks like a side-effect free expression (like most Linq features) but it is actually a side-effecting imperative statement in disguise.</p>
<p>If you want to carry out an action for each item on a list, use the foreach statement. That's what it's for.</p>
<p>If you want to manipulate lists of actions, then you can do that, but then you want <code>IEnumerable<Action></code>.</p>
<p>For the first part of your code, how about:</p>
<pre><code>var errorList = GetResultRows().Where(row => row.Field<string>("status").Equals("FAILURE", StringComparison.InvariantCultureIgnoreCase)
.ToList();
</code></pre>
<p>You have a <code>List<string></code> called excluded books. Use <code>HashSet<string></code> instead, and you don't need to check if a string is already added to it:</p>
<pre><code>var excludedBooks = new HashSet<string>();
foreach (DataRow row in errorList)
{
if (ToUseBooksList.Contains((string)row["main_book"]))
{
BookCheckResults.AddRow(string.Format("Error for MainBook {0}, RiskType {1}",
row["main_book"], row["risk_type"]));
excludedBooks.Add((string)row["main_book"]);
}
}
</code></pre>
<p>You can also filter the list with <code>Where</code>:</p>
<pre><code>var excludedBooks = new HashSet<string>();
foreach (DataRow row in errorList.Where(r => ToUseBooksList.Contains((string)r["main_book"]))
{
BookCheckResults.AddRow(string.Format("Error for MainBook {0}, RiskType {1}",
row["main_book"], row["risk_type"]));
excludedBooks.Add((string)row["main_book"]);
}
</code></pre>
http://stackoverflow.com/questions/1528440/for-loop-continue-if-boolean-condition-evaluates-to-false/1528449#152844916Answer by Earwicker for For loop - continue if boolean condition evaluates to falseEarwicker2009-10-06T22:33:43Z2009-10-06T22:59:53Z<p>You need functionality like the <code>continue</code> keyword - have you considered using the <code>continue</code> keyword, then?</p>
<p><strong>Update:</strong> Your example code is hard to decipher the intention of.</p>
<pre><code>for (int i = 0; i <= Collection.Count && Collection[i].Name != "Alan"; i++)
{
// If name is not Alan, increment i.
}
</code></pre>
<p>The <code>for</code> loop has three parts to it, separated by two semi-colons. The first part initializes the loop variable(s). The second part is an expression that is evaluated each time an iteration is about to start; if it is false, the loop terminates. The third part executes after each iteration.</p>
<p>So your loop above will exit at the first "Alan" it encounters, and also it will increment <code>i</code> every time it finishes an iteration. Finally, if there are no Alans, it will execute the last time with <code>i</code> equal to <code>Collection.Count</code>, which is one larger than the maximum valid index into the collection. So it will throw an exception for sure, as you try to access <code>Collection[i]</code> when <code>i</code> is out of range.</p>
<p>Maybe you want this:</p>
<pre><code>foreach (var item in Collection.Where(i => i.Name != "Alan"))
{
// item is not an "Alan"
}
</code></pre>
<p>You can think of the <code>Where</code> extension method as a way of filtering a collection.</p>
<p>If this seems obscure, you can achieve the same thing with the <code>continue</code> keyword (as you guessed):</p>
<pre><code>foreach (var item in Collection)
{
if (item.Name == "Alan")
continue;
// item is not an "Alan"
}
</code></pre>
<p>Or you can just put the code in the <code>if</code>'s block:</p>
<pre><code>foreach (var item in Collection)
{
if (item.Name != "Alan")
{
// item is not an "Alan"
}
}
</code></pre>
http://stackoverflow.com/questions/1516607/why-and-where-do-we-use-down-casting/1516611#15166111Answer by Earwicker for Why and Where do we use down casting? Earwicker2009-10-04T14:55:44Z2009-10-04T18:14:20Z<p>Your example code contains at least 4 syntax errors, so it's hard to judge what you're trying to do.</p>
<p>And it logically won't work either. You have a class <code>AImpl</code> that inherits <code>A</code>, then a member function that takes an <code>A</code> and appears to try to dynamic-cast it to an <code>AImpl</code>. But it isn't an <code>AImpl</code>, because it's just an <code>A</code>, as that is how the parameter is declared. If you were to pass an instance of <code>AImpl</code> to that function, it would be sliced down to just an <code>A</code>.</p>
<p>You could make it a reference or pointer to an <code>A</code>, and then it could be an <code>AImpl</code>. Dynamic casts are only ever of use on references or pointers.</p>
<p>Down-casting is used when we have a variable or parameter that has the static type of a base class but we logically know that it is (or might be) of a derived class. It is avoided wherever possible because it means that the compilation process is not able to completely check the type-correctness of the program, i.e. the answer to the question "are you trying to put a square peg into a round hole" cannot be fully answered until runtime.</p>
<p><strong>Update after question was edited</strong></p>
<p>It sounds like you want clients of your library to have access to a limited interface to an object, A, but when they pass it to a function in your library you will have access to the full interface. You could just use <code>friend</code> for this.</p>
<pre><code>class A
{
friend class LibraryThing;
void visibleToLibraryThing();
public:
// ctor, etc.
void visibleToAll();
};
class LibraryThing
{
public:
void foo(A &a)
{
a.visibleToLibraryThing();
}
};
</code></pre>
<p>The <code>LibraryThing</code> class can access the private members of <code>A</code>, because it is declared as a friend of <code>A</code>.</p>
<p>The downside is that <code>LibraryThing</code> can access <em>everything</em> in <code>A</code>, so it means that as the author of the library, you won't be able to benefit from encapsulation. Only users of your library will.</p>
http://stackoverflow.com/questions/1516476/how-to-create-some-class-from-dllconstructor-in-dll/1516495#15164952Answer by Earwicker for How to create some class from dll(constructor in dll)?(с++)Earwicker2009-10-04T14:07:36Z2009-10-04T14:07:36Z<p>You will need to export a function from the DLL that calls on to the constructor and returns the new object.</p>
<p>Try to avoid using concrete C++ types as function parameters; the idea of DLLs is that you can independently update them, but an upgraded compiler may lay out std::string differently, causing incompatibility at runtime.</p>
<p>This is what is at the root of COM, for example - a limited type system and a standard exported function for getting instances of objects.</p>
http://stackoverflow.com/questions/1516119/c-events-how-to-process-event-in-a-parallel-manner/1516153#15161531Answer by Earwicker for C# Events: How to process event in a parallel mannerEarwicker2009-10-04T10:59:14Z2009-10-04T10:59:14Z<p>You appear to be doing the asynchronous launching twice in your code snippet.</p>
<p>First you call BeginInvoke on a delegate - this queues a work item so that the thread pool will execute the delegate.</p>
<p>Then inside that delegate, you use QueueUserWorkItem to... queue another work item so the thread pool will execute the real delegate.</p>
<p>This means that when you get back an IAsyncResult (and hence a wait handle) from the outer delegate, it will signal completion when the second work item has been queued, not when it has finished executing.</p>
http://stackoverflow.com/questions/1502858/code-contracts-in-net-4-0-no-joy-for-non-nullable-reference-types-fans/1516094#15160947Answer by Earwicker for Code Contracts in .NET 4.0, no joy for non-nullable reference types fans?Earwicker2009-10-04T10:19:09Z2009-10-04T10:19:09Z<p>I think you're correct about this. Non-nullable reference checking at compile time was the killer feature I was waiting for in Code Contracts, and it isn't really there.</p>
<p>For those wondering what this means, consider an analogy with reference types. They were not nullable originally, but now they are if you put a question mark after the type name:</p>
<pre><code>int? n;
</code></pre>
<p>For consistency it would be ideal if the same was true of reference types. But that would break all existing C# programs and so isn't an option. In the research language <a href="http://research.microsoft.com/en-us/projects/specsharp/" rel="nofollow">Spec#</a> they went with using an exclamation mark suffix to mean non-nullable:</p>
<pre><code>string! s = "Hello";
</code></pre>
<p>As with ordinary value types, the compiler statically checks that a <code>string!</code> variable is not used on any code path before it has been initialised (I believe Spec# requires declaration and initialization to occur in the same statement).</p>
<p>It also bans the assignment of <code>null</code> to that variable.</p>
<p>And of course, it bans the assignment of an ordinary <code>string</code> to a <code>string!</code>. So how do bridge the gap between the two kinds of type? By writing a check:</p>
<pre><code>string x = GetStringFromSomewhere();
if (x != null)
s = x; // okay because compiler sees null check
</code></pre>
<p>The sad truth is that the majority of reference variables in most programs are likely to be non-nullable if the program is correct. Nullable variables are in the minority. And yet they are the default.</p>
<p><a href="http://qconlondon.com/london-2009/presentation/Null+References%3A+The+Billion+Dollar+Mistake" rel="nofollow">Another bad idea from the 1960s</a>!</p>
http://stackoverflow.com/questions/1516040/deploying-net-2-0-sp2/1516076#15160761Answer by Earwicker for Deploying .NET 2.0 sp2Earwicker2009-10-04T10:06:04Z2009-10-04T10:06:04Z<p>New version upgrade (or install alongside) older versions. Why not experiment on a VM?</p>
http://stackoverflow.com/questions/1515947/writing-a-portable-domain-specific-language/1516069#15160695Answer by Earwicker for writing a portable domain specific languageEarwicker2009-10-04T10:02:41Z2009-10-04T10:02:41Z<p>There seems to be some ambiguity in the question between language and library. The terms "internal DSL" and "external DSL" are useful, and I think are due to <a href="http://www.martinfowler.com/bliki/DomainSpecificLanguage.html" rel="nofollow">Martin Fowler</a>. </p>
<p>An "external" DSL might be a standalone command-line tool. It is passed a string of source, it parses it somehow, and does something with it. There are no real limits on how the syntax and semantics can work. It can also be made available as a library consisting mostly of an <code>eval</code>-like method; a common example would be building a SQL query as a string and calling an <code>execute</code> method in an RDBMS library; not a very pleasant or convenient usage pattern, and horrible if spread around a program on a large scale. </p>
<p>An "internal" DSL is a library that is written in such a way as to take advantage of the quirks of a host (general purpose) language to create the impression that a new language can be embedded inside an existing one. In syntactically-rich languages (C++, C#) this means using operator overloading in ways that seriously stretch (or ignore) the usual meanings of the operator symbols. There are many examples in C++; a few in C# also - the <a href="http://irony.codeplex.com/Wiki/View.aspx?title=expression%20grammar%20sample" rel="nofollow">Irony parser toolkit</a> simulates BNF in a fairly restrained way which works well.</p>
<p>Finally, there is a plain old library: classes, methods, properties, with well-chosen names.</p>
<p>An external DSL would allow you to completely ignore cross-language integration problems, as the only library-like portion would be an <code>eval</code> method. But inventing your own tool chain is non-trivial. People always forget the huge importance of debugging, intellisense, syntax highlighting etc.</p>
<p>An internal DSL is probably a pointless endeavour if you want to do it well on C# and Java. The problem is that if you take advantage of the quirks of one host language, you won't necessarily be able to repeat the trick on another language. e.g. Java has no operator overloading.</p>
<p>Which leaves a plain old library. If you want to span C# and Java (at least), then you are somewhat stuck in terms of a choice of implementation language. Do you really want to write the library twice? One possibility is to write the library in Java, and then use <a href="http://www.ikvm.net/userguide/intro.html" rel="nofollow">IKVM</a> to cross-compile it to .NET assemblies. This would guarantee you an identical interface on both of those platforms.</p>
<p>On the downside, the API would be expressed in lowest-common-denominator features - which is to say, Java features :). No properties, just getX/setX methods. Steer clear of generics because the two systems are quite different in that respect. Also even the standard way of naming methods differs between the two (<code>camelCase</code> versus <code>PascalCase</code>), so one set of users would smell a rat.</p>
http://stackoverflow.com/questions/1515896/what-are-nets-uses-and-limitations/1515919#15159190Answer by Earwicker for What are .NET's uses and limitations?Earwicker2009-10-04T08:27:36Z2009-10-04T08:27:36Z<p>If your app is a consumer of APIs, there are almost no limitations. The interop is very good indeed, good enough that any API that can be consumed by C is usable from C#.</p>
<p>Even a video player can be written in C# - depending on how much you write yourself. If you try to write the whole thing then you'll end up having to deliver buffers of data to DirectX, which is possible but a certain amount of the code would probably have to be in unsafe blocks, which takes away much of the point of using a managed language.</p>
<p>If you're writing a plugin DLL for another app, the story isn't as good at the moment. It generally is not recommended, because only one version of the .NET runtime can be loaded in any process. e.g. two developers write context menu extensions for Windows Explorer targeting different versions of the runtime, the second one to be loaded will fail to load.</p>
<p>This is fixed in version 4.0 however, so starting from that version, authoring plugin DLLs becomes possible also.</p>
http://stackoverflow.com/questions/1515899/does-c-have-an-equivilent-to-pythons-setitem/1515911#15159116Answer by Earwicker for Does C++ have an equivilent to Python's __setitem__Earwicker2009-10-04T08:24:03Z2009-10-04T08:24:03Z<p>You can overload the [] operator, but it's not quite the same as a separate getitem/setitem method pair, in that you don't get to specify different handling for getting and setting.</p>
<p>But you can get close by returning a temporary object that overrides the assignment operator.</p>
http://stackoverflow.com/questions/1514660/how-to-remove-all-spaces-and-tabs-from-a-given-string-in-c-language/1514666#15146668Answer by Earwicker for How to remove all spaces and tabs from a given string in C language?Earwicker2009-10-03T19:50:42Z2009-10-03T20:05:15Z<p>In C a string is identified by a pointer, such as <code>char *str</code>, or possibly an array. Either way, we can declare our own pointer that will point to the start of the string:</p>
<pre><code>char *c = str;
</code></pre>
<p>Then we can make our pointer move past any space-like characters:</p>
<pre><code>while (isspace(*c))
++c;
</code></pre>
<p>That will move the pointer forwards until it is not pointing to a space, i.e. after any leading spaces or tabs. This leaves the original string unmodified - we've just changed the location our pointer <code>c</code> is pointing at.</p>
<p>You will need this include to get <code>isspace</code>:</p>
<pre><code>#include <ctype.h>
</code></pre>
<p>Or if you are happy to define your own idea of what is a whitespace character, you can just write an expression:</p>
<pre><code>while ((*c == ' ') || (*c == '\t'))
++c;
</code></pre>
http://stackoverflow.com/questions/1880929/is-code-injection-possible-in-java/1880992#1880992Comment by Earwicker on Is code injection possible in Java?Earwicker2009-12-10T16:53:42Z2009-12-10T16:53:42Z@sleske - In the third paragraph I say "But it rarely crops up as an idea amongst Java programmers. So that's the reason it isn't much of a concern." So I already make the point you make in two of your comments. And in your comment about performance being irrelevant, I think you're confused about the problem - apps don't pass inputs to an interpreter/compiler in order to enable exploits. They do it typically to inject values via string concatenation. And they will very likely have limits on how slow or heavyweight this can be before they consider a simpler solution.http://stackoverflow.com/questions/1880984/when-are-variables-removed-from-memory-in-c/1881001#1881001Comment by Earwicker on When are variables removed from memory in C++?Earwicker2009-12-10T13:36:17Z2009-12-10T13:36:17ZRe: C# that is not true of all objects, some are reference type (classes) and some are value types (structs, primatives, enums).http://stackoverflow.com/questions/1880984/when-are-variables-removed-from-memory-in-c/1881003#1881003Comment by Earwicker on When are variables removed from memory in C++?Earwicker2009-12-10T13:34:42Z2009-12-10T13:34:42ZIn that example, temp would need to be a pointer.http://stackoverflow.com/questions/1784195/using-lockfileex-in-c/1784559#1784559Comment by Earwicker on Using LockFileEX in C#Earwicker2009-12-09T21:21:57Z2009-12-09T21:21:57Z@280Z28 - <i>"Blocking locks are worthless without a timeout parameter."</i> So <code>EnterCriticalSection</code> is worthless? The C# <code>lock</code> statement is worthless? http://stackoverflow.com/questions/1509114/is-it-necessary-have-someone-registered-to-an-event-before-you-can-raise-it/1509157#1509157Comment by Earwicker on Is it necessary have someone registered to an event before you can raise it?Earwicker2009-12-09T08:40:12Z2009-12-09T08:40:12ZCode in other classes can't assign a new value to a member declared as <code>event</code>. They can only use <code>+=</code> and <code>-=</code>. They cannot remove the empty delegate.http://stackoverflow.com/questions/1851468/usage-of-short-in-c/1851482#1851482Comment by Earwicker on Usage of 'short' in C++Earwicker2009-12-05T09:36:55Z2009-12-05T09:36:55Z@Vivek - <i>"so if loading a 16 bit value also be done in one bus cycle then what will be benefit of using 32 bit"</i> - apart from the fact that you can store much larger magnitude numbers in an int?http://stackoverflow.com/questions/1826464/strings-as-template-arguments/1826499#1826499Comment by Earwicker on Strings as template arguments?Earwicker2009-12-01T14:24:58Z2009-12-01T14:24:58ZAnd enums.......http://stackoverflow.com/questions/1742657/c-objects-and-c-objects-the-difference/1742697#1742697Comment by Earwicker on C# objects and C++ objects, the differenceEarwicker2009-11-16T15:05:43Z2009-11-16T15:05:43ZC# references are allowed to be <code>null</code>, whereas C++ references are not. Also C# references ensure that their targets will have a lifetime at least as long as every reference to it, whereas C++ references do not. They actually have very little in common. Just about the only common thing is that they can be used without special de-referencing syntax, and so use dot to access members.http://stackoverflow.com/questions/1720421/merge-two-lists-in-pythonComment by Earwicker on Merge two lists in python?Earwicker2009-11-12T07:39:41Z2009-11-12T07:39:41Z"Just as it sounds" - it could have meant [1, 4, 2, 5, 3, 6].http://stackoverflow.com/questions/1720503/parsing-peoples-first-and-last-name-in-pythonComment by Earwicker on Parsing people's first and last name in Python...Earwicker2009-11-12T07:34:27Z2009-11-12T07:34:27ZThe underlying problem (regardless of implementation language) is not as obviously solveable as it may seem - see this duplicate: <a href="http://stackoverflow.com/questions/103422/simple-way-to-parse-a-persons-name-into-its-component-parts" rel="nofollow" title="simple way to parse a persons name into its component parts">stackoverflow.com/questions/103422/…</a>http://stackoverflow.com/questions/58640/great-programming-quotes/58650#58650Comment by Earwicker on Great programming quotesEarwicker2009-11-11T08:37:48Z2009-11-11T08:37:48ZTake it easy, BubbaT! He was talking about BASIC, which had little in common with modern dialects. In particular, he would have been thinking of GOTO and line numbers. So he was spot on, no need to wish mutilation on him (anyway, he's been dead 7 years).http://stackoverflow.com/questions/1655738/does-scala-have-an-equivalent-to-c-yield/1678533#1678533Comment by Earwicker on Does Scala have an equivalent to C# yield?Earwicker2009-11-10T17:27:05Z2009-11-10T17:27:05ZAlthough C# iterators can be stateful, they don't have to be. What they allow is writing in a procedural style. There's no reason why functional languages shouldn't support syntax sugar to emulate procedural style. Even the "daddy", Haskell, supports this through its syntactic sugar over the core set of operations on a monad, allowing (for example) IO operations to be written in a way that looks like procedural coding (which is important when the order of the IO side-effects is bound to be crucial). In other words, even the purest language has to find an acceptable way to be impure.http://stackoverflow.com/questions/1666201/learn-c-or-javaComment by Earwicker on learn C++ or javaEarwicker2009-11-03T09:30:38Z2009-11-03T09:30:38ZWhy limit it to C++ and Java? Amazingly, there are other languages!http://stackoverflow.com/questions/844241/why-are-c0x-rvalue-reference-not-the-default/844256#844256Comment by Earwicker on Why are C++0x rvalue reference not the default?Earwicker2009-10-21T22:32:50Z2009-10-21T22:32:50ZThe <code>&</code> suffix is interesting - I hadn't spotted that. It's cool that it allows you to properly enforce the ancient meaning of lvalue (something that can appear on the LHS of an assignment).http://stackoverflow.com/questions/1588900/multithreading-in-net-implementing-a-counter-in-the-background/1589097#1589097Comment by Earwicker on Multithreading in .NET - implementing a counter in the backgroundEarwicker2009-10-19T15:24:13Z2009-10-19T15:24:13Z+1 this is probably the most generally useful approach. A timer would tick at regular intervals even if nothing had changed, whereas <code>Invoke</code> as used here would only update the GUI when you specifically ask it to.