User jop - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T22:52:21Zhttp://stackoverflow.com/feeds/user/11830http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/160711/net-time-sinkholes/160725#1607254Answer by jop for .NET time sinkholes?jop2008-10-02T03:05:46Z2009-09-24T00:19:04Z<p>Not really specific to .NET: threading.</p>
http://stackoverflow.com/questions/108631/what-is-your-single-favorite-development-tool/108654#10865433Answer by jop for What is your single favorite development tool?jop2008-09-20T16:32:58Z2009-08-20T15:31:20Z<p>Unix utilities. I even install <a href="http://en.wikipedia.org/wiki/Cygwin" rel="nofollow">Cygwin</a> when in Windows.</p>
http://stackoverflow.com/questions/105372/c-how-to-enumerate-an-enum/105402#10540282Answer by jop for C#: How to enumerate an enum?jop2008-09-19T20:37:18Z2009-08-13T10:40:04Z<pre><code>foreach (Suit suit in Enum.GetValues(typeof(Suit)))
{
}
</code></pre>
http://stackoverflow.com/questions/1096201/the-object-oriented-way-to-separate-the-model-from-its-representation/1108191#11081913Answer by jop for The Object-Oriented way to separate the model from its representationjop2009-07-10T07:30:00Z2009-07-10T07:30:00Z<p>What you can do is let the TempControllers be responsible for persisting itself using a generic archiver.</p>
<pre><code>class TempController
{
private Temperature _setPoint;
public Temperature SetPoint { get; set;}
public ImportFrom(Archive archive)
{
SetPoint = archive.Read("SetPoint");
}
public ExportTo(Archive archive)
{
archive.Write("SetPoint", SetPoint);
}
}
class AdvancedTempController
{
private Temperature _setPoint;
private Rate _rateControl;
public Temperature SetPoint { get; set;}
public Rate RateControl { get; set;}
public ImportFrom(Archive archive)
{
SetPoint = archive.Read("SetPoint");
RateControl = archive.ReadWithDefault("RateControl", Rate.Zero);
}
public ExportTo(Archive archive)
{
archive.Write("SetPoint", SetPoint);
archive.Write("RateControl", RateControl);
}
}
</code></pre>
<p>By keeping it this way, the controllers do not care how the actual values are stored but you are still keeping the internals of the object well encapsulated.</p>
<p>Now you can define an abstract Archive class that all archive classes can implement.</p>
<pre><code>abstract class Archive
{
public abstract object Read(string key);
public abstract object ReadWithDefault(string key, object defaultValue);
public abstract void Write(string key);
}
</code></pre>
<p>FormatA archiver can do it one way, and FormatB archive can do it another.</p>
<pre><code>class FormatAArchive : Archive
{
public object Read(string key)
{
// read stuff
}
public object ReadWithDefault(string key, object defaultValue)
{
// if store contains key, read stuff
// else return default value
}
public void Write(string key)
{
// write stuff
}
}
class FormatBArchive : Archive
{
public object Read(string key)
{
// read stuff
}
public object ReadWithDefault(string key, object defaultValue)
{
// if store contains key, read stuff
// else return default value
}
public void Write(string key)
{
// write stuff
}
}
</code></pre>
<p>You can add in another Controller type and pass it whatever formatter. You can also create another formatter and pass it to whichever controller.</p>
http://stackoverflow.com/questions/1091099/does-one-assembler-instruction-always-execute-atomically/1091181#10911814Answer by jop for Does one assembler instruction always execute atomically?jop2009-07-07T09:08:18Z2009-07-07T10:08:51Z<p>Invalidated by Nathan's comment:
<strike>If I remember my Intel x86 assembler correctly, the INC instruction only works for registers and does not directly work for memory locations.</p>
<p>So a counter++ would not be a single instruction in assembler (just ignoring the post-increment part). It would be at least three instructions: load counter variable to register, increment register, load register back to counter. And that is just for x86 architecture.</strike></p>
<p>In short, don't rely on it being atomic unless it is specified by the language specification and that the compiler that you are using supports the specifications.</p>
http://stackoverflow.com/questions/1091378/objective-c-using-insertstring-for-an-nsmutable-string/1091407#10914073Answer by jop for Objective C - Using insertString for an NSMutable stringjop2009-07-07T09:55:31Z2009-07-07T09:55:31Z<p>put the object inside the brackets:</p>
<pre><code>[a insertString: @"-" atIndex: 0];
</code></pre>
http://stackoverflow.com/questions/723778/os-x-which-volume-is-a-dvd/723825#7238253Answer by jop for OS X: which volume is a DVD?jop2009-04-07T01:11:38Z2009-04-07T01:11:38Z<p>For Cocoa, you can use NSWorkspace <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWorkspace%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWorkspace/mountedRemovableMedia" rel="nofollow">mountedRemovableMedia:</a> to get a list of volumes and the use NSWorkspace <a href="http://developer.apple.com/documentation/Cocoa/Reference/ApplicationKit/Classes/NSWorkspace%5FClass/Reference/Reference.html#//apple%5Fref/occ/instm/NSWorkspace/getFileSystemInfoForPath:isRemovable:isWritable:isUnmountable:description:type:" rel="nofollow">getFileSystemInfo:...</a> to get more information about each mounted volume.</p>
<pre><code>- (BOOL)getFileSystemInfoForPath:(NSString *)fullPath
isRemovable:(BOOL *)removableFlag
isWritable:(BOOL *)writableFlag
isUnmountable:(BOOL *)unmountableFlag
description:(NSString **)description
type:(NSString **)fileSystemType
</code></pre>
<p>If you want to make system calls, you can use <a href="http://developer.apple.com/DOCUMENTATION/Darwin/Reference/ManPages/man2/statfs.2.html" rel="nofollow">statfs</a> at the same information.</p>
<pre><code>int statfs(const char *path, struct statfs *buf);
</code></pre>
http://stackoverflow.com/questions/654882/patterns-to-get-a-subset-based-on-certain-criteria-in-design/657121#6571210Answer by jop for Patterns to get a subset based on certain criteria (In Design)jop2009-03-18T06:04:10Z2009-03-18T06:04:10Z<p>Martin Fowler and Eric Evans's Specification Pattern (<a href="http://martinfowler.com/apsupp/spec.pdf" rel="nofollow">pdf</a>) (<a href="http://en.wikipedia.org/wiki/Specification%5Fpattern" rel="nofollow">wikipedia</a>) seems to fit your requirement.</p>
http://stackoverflow.com/questions/490661/how-many-constructors-should-a-class-have/490877#4908771Answer by jop for How many constructors should a class have?jop2009-01-29T08:26:31Z2009-01-29T08:26:31Z<p>I limit my class to only have one <em>real</em> constructor. I define the <em>real</em> constructor as the one that has a body. I then have other constructors that just delegate to the real one depending on their parameters. Basically, I'm chaining my constructors.</p>
<p>Looking at your class, there are four constructors that has a body:</p>
<pre><code>public MyManager(ISomeManager someManager) //this one I added
{
this.someManager = someManager;
}
public MyManager(SomeClass someClass, DateTime someDate)
{
if (someClass != null)
myHelper = new MyHelper(someOtherClass, someDate, "some param");
}
public MyManager(SomeOtherClass someOtherClass, DateTime someDate)
{
myHelper = new MyHelper(someOtherClass, someDate, "some param");
}
public MyManager(YetAnotherClass yetAnotherClass, DateTime someDate)
{
myHelper = new MyHelper(yetAnotherClass, someDate, "some param");
}
</code></pre>
<p>The first one is the one that you've added. The second one is similar to the last two but there is a conditional. The last two constructors are very similar, except for the type of parameter. </p>
<p>I would try to find a way to create just one real constructor, making either the 3rd constructor delegate to the 4th or the other way around. I'm not really sure if the first constructor can even fit in as it is doing something quite different than the old constructors.</p>
<p>If you are interested in this approach, try to find a copy of the Refactoring to Patterns book and then go to the <a href="http://www.industriallogic.com/xp/refactoring/chainConstructors.html" rel="nofollow">Chain Constructors</a> page.</p>
http://stackoverflow.com/questions/486730/help-with-regex-patterns/486776#4867760Answer by jop for Help with Regex patternsjop2009-01-28T07:34:36Z2009-01-28T07:34:36Z<p>I tried this in vim. Here is the sample data:</p>
<pre><code>AB.CD
AB.CDX
AB.whatever
AB
AB.CD.CD
AB.CD.
AB.CD.CD
</code></pre>
<p>Here is my regexes</p>
<ol>
<li><p>This captures all lines starting with AB and then expects a literal dot, and then filters out all lines that has a second dot.</p>
<p>^AB\.[^.]*$</p></li>
<li><p>This captures all lines that is just an AB (the part before the pipe) or lines that start with AB that is followed by two literal dots (escaped with a backslash)</p>
<p>^AB$\|^AB\..<em>\..</em>$</p></li>
</ol>
http://stackoverflow.com/questions/426896/vim-ctrl-v-conflict-with-windows-paste/426987#4269874Answer by jop for VIM Ctrl-V Conflict with Windows Pastejop2009-01-09T03:29:33Z2009-01-09T03:29:33Z<p>Check your _vimrc file and see if it sources mswin.vim. That script maps the ^v to the paste. You can either remove that line on your _vimrc file or disable the mapping commands directly on mswin.vim.</p>
<p>Do a :help behave on vim for more info.</p>
http://stackoverflow.com/questions/415240/net-class-refactoring-dilemma/415691#4156911Answer by jop for .NET Class Refactoring Dilemmajop2009-01-06T07:07:17Z2009-01-06T07:07:17Z<p>Here is another way of refactoring this:</p>
<pre><code>using System.IO;
public class ExternalApplication
{
public ExternalApplication(string path)
{
this.Path = path;
}
public string Path { get; protected set; }
public bool Exists()
{
if(string.IsNullOrEmpty(this.Path))
throw new ConfigurationException("Path not specified.");
return File.Exists(this.Path);
}
public void Execute(string args)
{
// Implementation to launch the application
}
}
public class AppFactory
{
public ExternalApplication App1()
{
// Implementation to initialize this application from
// the application's configuration file.
}
public ExternalApplication App2()
{
// Implementation to initialize this application from
// the application's configuration file.
}
public ExternalApplication AppFromKey(string key)
{
// get from somewhere
}
}
</code></pre>
<p>In this case, you have a single type <code>ExternalApplication</code> and a factory that has methods the return a properly configured application for you. </p>
http://stackoverflow.com/questions/361742/would-this-be-a-good-case-for-polymorphism/361749#3617490Answer by jop for Would this be a good case for polymorphism.jop2008-12-12T03:04:10Z2008-12-12T03:04:10Z<p>Yes. I think you got it covered well enough.</p>
http://stackoverflow.com/questions/268301/what-are-alternatives-to-objective-c-for-mac-programming/268334#2683343Answer by jop for What are alternatives to Objective-C for Mac programming?jop2008-11-06T11:19:00Z2008-11-06T11:19:00Z<p>Try any of the Cocoa bridges listed in here <a href="http://www.cocoadev.com/index.pl?CocoaBridges" rel="nofollow">http://www.cocoadev.com/index.pl?CocoaBridges</a></p>
<p>You can also try <a href="http://www.fscript.org/" rel="nofollow">F-Script</a> - a smalltalk dialect that is written specifically for MacOSX/Cocoa.</p>
http://stackoverflow.com/questions/268132/invert-if-statement-to-reduce-nesting/268187#26818739Answer by jop for Invert "if" statement to reduce nestingjop2008-11-06T10:11:23Z2008-11-06T10:11:23Z<p>A return in the middle of the method is not necessarily bad. It might be better to return immediately it it makes the intent of the code clearer. For example:</p>
<pre><code>double getPayAmount() {
double result;
if (_isDead) result = deadAmount();
else {
if (_isSeparated) result = separatedAmount();
else {
if (_isRetired) result = retiredAmount();
else result = normalPayAmount();
};
}
return result;
};
</code></pre>
<p>In this case, if <code>_isDead</code> is true, we can immediately get out of the method. It might be better to structure it this way instead:</p>
<pre><code>double getPayAmount() {
if (_isDead) return deadAmount();
if (_isSeparated) return separatedAmount();
if (_isRetired) return retiredAmount();
return normalPayAmount();
};
</code></pre>
<p>I've picked this code from the <a href="http://www.refactoring.com/catalog/replaceNestedConditionalWithGuardClauses.html" rel="nofollow">refactoring catalog</a>. This specific refactoring is called: Replace Nested Conditional with Guard Clauses.</p>
http://stackoverflow.com/questions/249171/what-is-a-good-design-pattern-in-c-for-classes-that-need-to-reference-other-clas/249202#2492024Answer by jop for What is a good design pattern in C# for classes that need to reference other classes?jop2008-10-30T03:38:11Z2008-10-30T03:50:54Z<p>If you have the Martin Fowler's Refactoring book, just follow the "Change Unidirectional Association to Bidirectional" refactoring.</p>
<p>In case you don't have it, here's how your classes will look like after the refactoring:</p>
<pre><code>class C
{
// Don't to expose this publicly so that
// no one can get behind your back and change
// anything
private List<W> contentsW;
public void Add(W theW)
{
theW.Container = this;
}
public void Remove(W theW)
{
theW.Container = null;
}
#region Only to be used by W
internal void RemoveW(W theW)
{
// do nothing if C does not contain W
if (contentsW.Contains(theW))
return; // or throw an exception if you consider this illegal
contentsW.Remove(theW);
}
internal void AddW(W theW)
{
if (!contentW.Contains(theW))
contentsW.Add(theW);
}
#endregion
}
class W
{
private C containerC;
public Container Container
{
get { return containerC; }
set
{
if (containerC != null)
containerC.RemoveW(this);
containerC = value;
if (containerC != null)
containerC.AddW(this);
}
}
}
</code></pre>
<p>Take note that I've made the <code>List<W></code> private. Expose the list of Ws via an enumerator instead of exposing the list directly.</p>
<p>The code above handles transfer of ownership properly. Say you have two instances of C -- C1 and C2 - and the instances of W -- W1 and W2.</p>
<pre><code>W1.Container = C1;
W2.Container = C2;
</code></pre>
<p>In the code above, C1 contains W1 and C2 contains W2. If you reassign W2 to C1</p>
<pre><code>W2.Container = C1;
</code></pre>
<p>Then C2 will have zero items and C1 will have two items - W1 and W2. You can have a floating W</p>
<pre><code>W2.Container = null;
</code></pre>
<p>In this case, W2 will be removed from C1's list and it will have no container. You can also use the Add and Remove methods from C to manipulate W's containers - so C1.Add(W2) will automatically remove W2 from it's original container and add it to the new one.</p>
http://stackoverflow.com/questions/248961/c-using-statement-catch-error/249176#2491760Answer by jop for C# using statement catch errorjop2008-10-30T03:11:39Z2008-10-30T03:11:39Z<p>If your code looks like this:</p>
<pre><code>using (SqlCommand cmd = new SqlCommand(...))
{
try
{
/* call stored procedure */
}
catch (SqlException ex)
{
/* handles the exception. does not rethrow the exception */
}
}
</code></pre>
<p>Then I would refactor it to use try.. catch.. finally instead.</p>
<pre><code>SqlCommand cmd = new SqlCommand(...)
try
{
/* call stored procedure */
}
catch (SqlException ex)
{
/* handles the exception and does not ignore it */
}
finally
{
if (cmd!=null) cmd.Dispose();
}
</code></pre>
<p>In this scenario, I would be handling the exception so I have no choice but to add in that try..catch, I might as well put in the finally clause and save myself another nesting level. Note that I must be doing something in the catch block and not just ignoring the exception.</p>
http://stackoverflow.com/questions/247156/which-of-these-two-getlargestvalue-c-implementations-is-better-and-why/247179#2471792Answer by jop for Which of these two GetLargestValue C# implementations is better, and why?jop2008-10-29T15:11:20Z2008-10-29T15:11:20Z<p>I have to choose option B - not that it's perfect but because option A uses exceptions to represent logic.</p>
http://stackoverflow.com/questions/110641/how-do-you-code-the-hello-world-program-in-your-favourite-language/110717#1107170Answer by jop for How do you code the "Hello World!" program in your favourite language?jop2008-09-21T10:22:41Z2008-10-25T08:12:05Z<p>Whitespace is a language where only whitespace characters are used. Non whitespace chars are comments.</p>
<p>Here is Hello, World in Whitespace. <a href="http://compsoc.dur.ac.uk/whitespace/hworld.ws" rel="nofollow">http://compsoc.dur.ac.uk/whitespace/hworld.ws</a></p>
<p>Go to that link and Ctrl-A to `see' the code. Enjoy!</p>
http://stackoverflow.com/questions/205566/comprehensive-introduction-to-unit-testing/205606#2056065Answer by jop for Comprehensive introduction to unit testingjop2008-10-15T17:16:38Z2008-10-15T17:16:38Z<p><a href="http://www.pragprog.com/titles/utc2/pragmatic-unit-testing-in-c-with-nunit" rel="nofollow">Pragmatic Unit Testing</a> is a good reference. There's a C# and Java version of the book. I has lots of tips on what to test and how to test it. Have a look at the <a href="http://media.pragprog.com/titles/utc2/StandaloneSummary.pdf" rel="nofollow">summary card</a> to get an idea on what the book is all about.</p>
<p><img src="http://www.pragprog.com/images/covers/190x228/utc2.jpg?1223489035" alt="alt text" /></p>
http://stackoverflow.com/questions/205526/how-do-i-create-a-stored-procedure-that-will-optionally-search-columns/205580#2055801Answer by jop for How do I create a stored procedure that will optionally search columns?jop2008-10-15T17:10:28Z2008-10-15T17:10:28Z<p>Erland Sommarskog's article <a href="http://www.sommarskog.se/dyn-search-2008.html" rel="nofollow">Dynamic Search Conditions in T-SQL</a> is a good reference on how to do this. Erland presents a number of strategies on how to do this without using dynamic SQL (just plain IF blocks, OR, COALESCE, etc) and even lists out the performance characteristics of each technique.</p>
<p>In case you have to bite the bullet and go through the Dynamic SQL path, you should also read Erland's <a href="http://www.sommarskog.se/dynamic_sql.html" rel="nofollow">Curse and Blessings of Dynamic SQL</a> where he gives out some tips on how to properly write dynamic SQLs</p>
http://stackoverflow.com/questions/197447/how-to-find-all-dependencies-of-a-net-project/197456#1974565Answer by jop for How to find all dependencies of a .NET project?jop2008-10-13T12:42:28Z2008-10-13T12:42:28Z<p><a href="http://www.red-gate.com/products/reflector/index.htm" rel="nofollow">Reflector</a> - previously from Lutz Roeder, now from Red-Gate software.</p>
http://stackoverflow.com/questions/195571/is-there-a-tool-which-lists-exported-methods-from-a-dll/195577#1955779Answer by jop for Is there a tool which lists exported methods from a DLL?jop2008-10-12T14:53:40Z2008-10-12T14:53:40Z<p>For DLLs, use the Dependency Viewer (<a href="http://technet.microsoft.com/en-us/library/cc738370.aspx" rel="nofollow">depends.exe</a>).</p>
<p>For COM objects, use <a href="http://www.microsoft.com/downloads/details.aspx?familyid=5233b70d-d9b2-4cb5-aeb6-45664be858b6&displaylang=en" rel="nofollow">oleview.exe</a></p>
http://stackoverflow.com/questions/192332/is-there-a-way-in-net-to-have-a-method-called-automatically-after-another-method/192360#1923600Answer by jop for Is there a way in .NET to have a method called automatically after another method has been invoked but before it is enteredjop2008-10-10T17:26:18Z2008-10-10T17:26:18Z<p>You would have to use some form of AOP framework like <a href="http://www.springframework.net/doc-latest/reference/html/aop-quickstart.html" rel="nofollow">SpringFramework.NET</a> to do that.</p>
http://stackoverflow.com/questions/192268/ssl-certificate-encryption-vs-cypher-encryption/192297#1922975Answer by jop for SSL Certificate encryption vs cypher encryptionjop2008-10-10T17:15:36Z2008-10-10T17:15:36Z<p>There is a good entry in <a href="http://en.wikipedia.org/wiki/Secure_Sockets_Layer#How_it_works" rel="nofollow">Wikipedia</a>. </p>
<p>You are right, there are two kinds of encryption going on. The first one is asymmetric encryption or public key encryption - this is the one with the larger key. The second type is symmetric encryption with the smaller key.</p>
<p>The first type of encryption (asymmetric - larger key) is used to negotiate what type of symmetric encryption the client and the server will use. They'll also exchange the session key that they'll use. This is the handshake process and this is encrpyted using the asymmetric encryption</p>
<p>The session key is basically the key that they'll use when sending the real data, encrypted by whatever type they've decided on the handshake process. This is the symmetric encryption part.</p>
http://stackoverflow.com/questions/192206/how-does-one-tell-if-an-idisposable-object-reference-is-disposed/192245#1922452Answer by jop for How does one tell if an IDisposable object reference is disposed?jop2008-10-10T16:56:22Z2008-10-10T16:56:22Z<p>If it is not your class and it doesn't provide an IsDisposed property (or something similar - the name is just a convention), then you have no way of knowing.</p>
<p>But if it is your class and you are following the <a href="http://msdn.microsoft.com/en-us/library/fs2xkftw.aspx" rel="nofollow">canonical IDisposable implementation</a>, then just expose the _disposed or _isDisposed field as a property and check that.</p>
http://stackoverflow.com/questions/192055/how-do-i-create-keyboard-shortcut-chords-in-my-own-winforms-application/192170#1921700Answer by jop for How do I create Keyboard Shortcut Chords in my own Winforms Applicationjop2008-10-10T16:33:38Z2008-10-10T16:33:38Z<p>Menu controls have property named <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.menuitem.shortcut.aspx" rel="nofollow">ShortCut</a> where you can assign a value. When you press that shortcut key, that menu item will be invoked. Use that property for the commands that has a corresponding menu.</p>
<p>If you need shortcuts that won't be available on the menus, then you'll have to handle that your self via the <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keyup.aspx" rel="nofollow">KeyUp</a> or <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.control.keydown.aspx" rel="nofollow">KeyDown</a> events, either on the form or the control. A <a href="http://msdn.microsoft.com/en-us/library/system.windows.forms.keyeventargs.aspx" rel="nofollow">KeyEventArgs</a> object will be passed to your handler, and you can check which key is pressed, and whether the Ctrl, Alt or Shift keys were also pressed.</p>
<p>Sample code from MSDN:</p>
<pre><code>// Handle the KeyDown event to determine the type of character entered into the control.
private void textBox1_KeyDown(object sender, System.Windows.Forms.KeyEventArgs e)
{
// Initialize the flag to false.
nonNumberEntered = false;
// Determine whether the keystroke is a number from the top of the keyboard.
if (e.KeyCode < Keys.D0 || e.KeyCode > Keys.D9)
{
// Determine whether the keystroke is a number from the keypad.
if (e.KeyCode < Keys.NumPad0 || e.KeyCode > Keys.NumPad9)
{
// Determine whether the keystroke is a backspace.
if(e.KeyCode != Keys.Back)
{
// A non-numerical keystroke was pressed.
// Set the flag to true and evaluate in KeyPress event.
nonNumberEntered = true;
}
}
}
//If shift key was pressed, it's not a number.
if (Control.ModifierKeys == Keys.Shift) {
nonNumberEntered = true;
}
}
</code></pre>
http://stackoverflow.com/questions/191995/visual-studio-2005-quick-file-search/192061#1920610Answer by jop for Visual Studio 2005 quick file searchjop2008-10-10T16:07:37Z2008-10-10T16:07:37Z<p>In plain VS.NET 2005, Go to the command window (Ctrl-D), type "openfile" (or just "of") and the file name.</p>
<p>If you have Resharper (and you should have it), you can type Ctrl-N and type in the class name, or Ctrl-Shift-N and type in the filename.</p>
http://stackoverflow.com/questions/191404/single-inheritance-in-c-object-class/191513#1915130Answer by jop for Single Inheritance in C# - object class?jop2008-10-10T14:15:43Z2008-10-10T14:15:43Z<p>A class inherits from object <strong>if you do not specify a base class</strong>. Thus:</p>
<pre><code>class C {}
</code></pre>
<p>is the same as </p>
<pre><code>class C : Object {}
</code></pre>
<p>However, <strong>if you specify a base class, it will inherit from that class instead of Object</strong>. Thus,</p>
<pre><code>class B : C {}
</code></pre>
<p>B directly inherits from C instead of Object. Another example,</p>
<pre><code>class A : B {}
</code></pre>
<p>In this case, A inherits from B instead of Object. To summarize, in this hierarchy:</p>
<pre><code>class C {}
class B : C {}
class A : B {}
</code></pre>
<p>Class A derives from B, which derives from C. So Class A is indirectly derived from C because B is derived from C. C also derived from Object which in not explicitly specified but it is there by default. So A is indirectly derived from Object too.</p>
http://stackoverflow.com/questions/189786/is-there-any-reason-why-you-all-want-to-be-notify-whenever-someone-commit-some-co/189986#1899860Answer by jop for Is there any reason why you all want to be notify whenever someone commit some codes?jop2008-10-10T02:57:23Z2008-10-10T02:57:23Z<p>I use it mainly to gauge the heartbeat of the project. Each commit message is a pulse. In time, you'll get an some idea on what a "normal" pulse "sounds" like.</p>
<p>In a normal day, we get 4 to 6 commit messages. That slows down to 1 or 2 as the iteration date comes and stops about a couple of days before the iteration release. A day or two after the iteration, it starts picking up again and if bugs are found, we can get 1 commit message per hour as bugs are fixed. A regular day with few number of commits might mean a developer is having a hard time on some functionality, or spending too much time on stackoverflow.</p>
<p>I also find informative commit messages very useful. Sometimes, a manager or tester doesn't even have to ask the developers the status of a feature or a bug - just look at the commit messages to see if there is any work done on it.</p>
http://stackoverflow.com/questions/105372/c-how-to-enumerate-an-enum/105402#105402Comment by jop on C#: How to enumerate an enum?jop2009-08-13T10:38:57Z2009-08-13T10:38:57Z@Hainesy - haha! stackoverflow needs more than a syntax hilighter. it needs a syntax checker. fixed.http://stackoverflow.com/questions/1091099/does-one-assembler-instruction-always-execute-atomically/1091181#1091181Comment by jop on Does one assembler instruction always execute atomically?jop2009-07-07T10:09:18Z2009-07-07T10:09:18ZThanks for the correction Nathan.http://stackoverflow.com/questions/137375/process-to-pass-from-problem-to-code-how-did-you-learn/137485#137485Comment by jop on Process to pass from problem to code. How did you learn?jop2009-04-16T07:51:26Z2009-04-16T07:51:26ZThanks Carl, but I would have to disagree with YAGNI in this case as the code is just too simple. I reserve YAGNI to paralyzying problems or more complicated situations.http://stackoverflow.com/questions/417735/in-tdd-what-is-the-advantage-of-running-the-tests-before-even-writing-an-empty-m/418107#418107Comment by jop on In TDD, what is the advantage of running the tests before even writing an empty method?jop2009-01-07T02:45:06Z2009-01-07T02:45:06Z+1 - I use resharper and it allows me to create non-existent methods. Makes writing the tests first on vs.net tolerable. :)http://stackoverflow.com/questions/362154/loose-coupling-vs-information-hiding-and-ease-of-changeComment by jop on Loose Coupling vs. Information Hiding and Ease of Changejop2008-12-12T08:42:59Z2008-12-12T08:42:59ZTrying to look for this on the book. Can you quote the chapter/section?http://stackoverflow.com/questions/255214/when-should-i-use-the-visitor-design-pattern/255357#255357Comment by jop on When should I use the Visitor Design Pattern?jop2008-11-01T01:56:34Z2008-11-01T01:56:34Zhaha. You do not understand the Visitor pattern if you don't find this funny.http://stackoverflow.com/questions/252371/vi-indentation/252395#252395Comment by jop on vi indentationjop2008-10-31T05:06:11Z2008-10-31T05:06:11Z>} is pretty useful.http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252558#252558Comment by jop on Create a cross platform Windows, Mac OS X applicationjop2008-10-31T05:00:55Z2008-10-31T05:00:55ZThis one says it all.http://stackoverflow.com/questions/252514/create-a-cross-platform-windows-mac-os-x-application/252520#252520Comment by jop on Create a cross platform Windows, Mac OS X applicationjop2008-10-31T04:58:13Z2008-10-31T04:58:13Z+1 for Qt. Dunno about SDL though.http://stackoverflow.com/questions/182034/where-windows-explorer-gets-its-folder-up-and-back-icons-from/182505#182505Comment by jop on Where Windows Explorer gets its “Folder Up” and “Back” icons from?jop2008-10-31T00:51:46Z2008-10-31T00:51:46Zwhat I do is extract the icons and then embed it on my application.http://stackoverflow.com/questions/207343/unit-testing-a-data-structure/207366#207366Comment by jop on Unit Testing a Data Structurejop2008-10-16T04:37:09Z2008-10-16T04:37:09ZIt's also called as test fixture - it's the class that contains the test methods.http://stackoverflow.com/questions/205544/iterate-through-properties-in-outlook-using-reflectionComment by jop on Iterate through properties in outlook using reflectionjop2008-10-15T17:26:00Z2008-10-15T17:26:00Zduplicate: <a href="http://stackoverflow.com/questions/205624/iterate-through-a-contacts-properties-using-outlook" rel="nofollow" title="iterate through a contacts properties using outlook">stackoverflow.com/questions/205624/…</a>http://stackoverflow.com/questions/205566/comprehensive-introduction-to-unit-testingComment by jop on Comprehensive introduction to unit testingjop2008-10-15T17:14:51Z2008-10-15T17:14:51ZWhat language are you using?http://stackoverflow.com/questions/198235/how-widespread-is-d-at-so/198238#198238Comment by jop on How widespread is D at SO?jop2008-10-13T16:54:27Z2008-10-13T16:54:27ZJust enclose it in square brackets like this: [d]http://stackoverflow.com/questions/195590/locating-a-file-on-the-path/195612#195612Comment by jop on Locating a file on the pathjop2008-10-12T15:43:58Z2008-10-12T15:43:58ZThe tag stated windows.