active questions tagged overloading - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T05:50:26Z http://stackoverflow.com/feeds/tag/overloading http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1793577/overloading-default-construction-with-initializer-list 0 Overloading Default Construction with Initializer List ReaperUnreal 2009-11-24T23:07:34Z 2009-11-24T23:22:54Z <p>I need to know how to get something to work. I've got a class with a constructor and some constants initialized in the initializer list. What I want is to be able to create a different constructor that takes some extra params but still use the initializer list. Like so:</p> <pre><code>class TestClass { const int cVal; int newX; TestClass(int x) : cVal(10) { newX = x + 1; } TestClass(int i, int j) : TestClass(i) { newX += j; } } </code></pre> <p>Totally terrible example, but it gets the point across. Question is, how do I get this to work?</p> http://stackoverflow.com/questions/1758917/delphi-pascal-overloading-a-constructor-with-a-different-prototype 4 Delphi/pascal: overloading a constructor with a different prototype David Dombrowsky 2009-11-18T20:40:15Z 2009-11-20T23:58:12Z <p>I'm trying to create a child class of TForm with </p> <ol> <li>a special constructor for certain cases, and </li> <li>a default constructor that will maintain compatibility with current code.</li> </ol> <p>This is the code I have now:</p> <pre><code>interface TfrmEndoscopistSearch = class(TForm) public /// original constructor kept for compatibility constructor Create(AOwner : TComponent); overload; override; /// additional constructor allows for a caller-defined base data set constructor Create(AOwner : TComponent; ADataSet : TDataSet; ACaption : string = ''); overload; end; </code></pre> <p>It seems to work, but I always get the compiler warning:</p> <pre> [Warning] test.pas(44): Method 'Create' hides virtual method of base type 'TCustomForm' </pre> <ul> <li>Adding "overload;" after the second constructor won't compile. "[Error] test.pas(44): Declaration of 'Create' differs from previous declaration".</li> <li>making the second constructor a class function compiles without any errors or warnings, but dies with an access violation at runtime (all member vars are nil).</li> </ul> http://stackoverflow.com/questions/1763366/visual-studio-intellisense-not-showing-methods-on-generic-overload 3 Visual Studio Intellisense not showing methods on generic overload Jason 2009-11-19T13:39:41Z 2009-11-19T14:13:31Z <p>Given the following two interfaces (these are small examples, not my actual implementation):</p> <pre><code>public interface IAssertion&lt;T&gt; { IAssertion&lt;T&gt; IsNotNull(); IAssertion&lt;T&gt; Evaluate(Predicate&lt;T&gt; predicate) } public interface IStringAssertion : IAssertion&lt;string&gt; { IStringAssertion IsNotNullOrEmpty(); } </code></pre> <p>and a static factory that will return the appropriate interface, for example:</p> <pre><code>public static class Require { public static IAssertion&lt;T&gt; That&lt;T&gt;(T value) { ... } public static IStringAssertion That(string value) { ... } } </code></pre> <p>I should be able to do the following:</p> <pre><code>public void TestMethod(SomeClass a, string b) { Require.That(a).IsNotNull(); Require.That(b).IsNotNullOrEmpty().Evaluate(SomeMethodThatAcceptsString); } </code></pre> <p>This code compiles and will actually run. I can even set up tests that pass, such as:</p> <pre><code>Assert.IsInstanceOf&lt;IStringAssertion&gt;(Require.That(string.Empty)); Assert.IsNotInstanceOf&lt;IStringAssertion&gt;(Require.That(new object()); </code></pre> <p>The problem I am running into and the whole point of this question, is that Visual Studio 2005 intellisense is not resolving the differences between the two.</p> <p>When I type <code>Require.That("...").</code> I should expect to see a list of </p> <pre> Evaluate(Predicate predicate) IsNull() IsNotNullOrEmpty() </pre> <p>but instead I see nothing.</p> <p>I would really like to keep the same method name for the overloads. I want to keep the generic overload because of the predicate in the Evaluate method of the IAssertion interface.</p> <p>Also, I know I can do something close to this using extension methods, but that is not an option because I still want to support .Net 2.0 and would like to keep the fluent api.</p> <p><strong>Updated:</strong></p> <p>There have been some good answers that involve third party add-ons to Visual Studio. Unfortunately I am not in a position to either install or purchase add-on tools for Visual Studio due to the corporate red tape that I am developing under. (I hate politics!)</p> <p>I am looking for a code only option that will work in both Visual Studio 2005 and Visual Studio 2008.</p> <p><strong>Updated:</strong></p> <p>This works in Visual Studio 2008. Thank you, <a href="http://stackoverflow.com/users/55847/luke">Luke</a>. That only leaves Visual Studio 2005.</p> http://stackoverflow.com/questions/1760399/is-it-common-or-encouraged-practice-to-overload-a-function-to-accept-ienumerabl 1 Is it common (or encouraged) practice to overload a function to accept IEnumerable<T>, ICollection<T>, IList<T>, etc.? Dan 2009-11-19T01:45:31Z 2009-11-19T04:28:27Z <p><strong>EDIT</strong>:</p> <p>From the answers given, it's been made rather clear to me how the design I'm asking about below should actually be implemented. With those suggestions in mind (and in response to a comment politely pointing out that my example code does not even <em>compile</em>), I've edited the following code to reflect what the general consensus seems to be. The question that remains may no longer make sense in light of the code, but I'm leaving it as it is for posterity.</p> <p><hr></p> <p>Suppose I have three overloads of a function, one taking <code>IEnumerable&lt;T&gt;</code>, one taking <code>ICollection&lt;T&gt;</code>, and one taking <code>IList&lt;T&gt;</code>, something like the following:</p> <pre><code>public static T GetMiddle&lt;T&gt;(IEnumerable&lt;T&gt; values) { IList&lt;T&gt; list = values as IList&lt;T&gt;; if (list != null) return GetMiddle(list); int count = GetCount&lt;T&gt;(values); T middle = default(T); int index = 0; foreach (T value in values) { if (index++ &gt;= count / 2) { middle = value; break; } } return middle; } private static T GetMiddle&lt;T&gt;(IList&lt;T&gt; values) { int middleIndex = values.Count / 2; return values[middleIndex]; } private static int GetCount&lt;T&gt;(IEnumerable&lt;T&gt; values) { // if values is actually an ICollection&lt;T&gt; (e.g., List&lt;T&gt;), // we can get the count quite cheaply ICollection&lt;T&gt; genericCollection = values as ICollection&lt;T&gt;; if (genericCollection != null) return genericCollection.Count; // same for ICollection (e.g., Queue&lt;T&gt;, Stack&lt;T&gt;) ICollection collection = values as ICollection; if (collection != null) return collection.Count; // otherwise, we've got to count values ourselves int count = 0; foreach (T value in values) count++; return count; } </code></pre> <p>The idea here is that, if I've got an <code>IList&lt;T&gt;</code>, that makes my job easiest; on the other hand, I can still do the job with an <code>ICollection&lt;T&gt;</code> or even an <code>IEnumerable&lt;T&gt;</code>; the implementation for those interfaces just isn't as efficient.</p> <p>I wasn't sure if this would even work (if the runtime would be able to choose an overload based on the parameter passed), but I've tested it and it seems to.</p> <p>My question is: is there a problem with this approach that I haven't thought of? Alternately, is this in fact a good approach, but there's a better way of accomplishing it (maybe by attempting to cast the <code>values</code> argument up to an <code>IList&lt;T&gt;</code> first and running the more efficient overload if the cast works)? I'm just interested to know others' thoughts.</p> http://stackoverflow.com/questions/1732786/overloaded-signification-on-msdn 1 Overloaded signification on msdn Stringer Bell 2009-11-14T00:38:39Z 2009-11-14T00:58:40Z <p>I don't understand what does the overloaded term mean in the context of msdn library's page for MemoryStream Close method (or others like Dispose).</p> <p>See the page <a href="http://msdn.microsoft.com/en-us/library/system.io.memorystream%5Fmethods.aspx" rel="nofollow">here</a>. To me, overloaded points out the fact that you are providing a method with the same name but different signature than an existing one AND in the <em>same class</em>.</p> <p>In this case, there's no existing Close method. Shouldn't it be override instead? Thanks!</p> http://stackoverflow.com/questions/1716855/what-is-operation-overloading 0 what is operation overloading? [closed] rakesh kumar 2009-11-11T17:40:40Z 2009-11-11T17:55:36Z <p>Assuming I have a function that compares to of my objects: obj1, and obj2. This function returns 0 if obj1 and obj2 are equal then it is called operation overloading</p> http://stackoverflow.com/questions/1709478/overloading-iterator-n-and-n-iterator-in-a-c-iterator-class 0 Overloading *(iterator + n) and *(n + iterator) in a C++ iterator class? exscape 2009-11-10T16:56:30Z 2009-11-10T19:43:32Z <p>(Note: I'm writing this project for learning only; comments about it being redundant are... uh, redundant. ;)</p> <p>I'm trying to implement a random access iterator, but I've found very little literature on the subject, so I'm going by trial and error combined with Wikpedias list of operator overload prototypes. It's worked well enough so far, but I've hit a snag.</p> <p>Code such as</p> <pre><code>exscape::string::iterator i = string_instance.begin(); std::cout &lt;&lt; *i &lt;&lt; std::endl; </code></pre> <p>works, and prints the first character of the string. However, *(i + 1) doesn't work, and neither does *(1 + i). My full implementation would obviously be a bit too much, but here's the gist of it:</p> <pre><code>namespace exscape { class string { friend class iterator; ... public: class iterator : public std::iterator&lt;std::random_access_iterator_tag, char&gt; { ... char &amp;operator*(void) { return *p; // After some bounds checking } char *operator-&gt;(void) { return p; } char &amp;operator[](const int offset) { return *(p + offset); // After some bounds checking } iterator &amp;operator+=(const int offset) { p += offset; return *this; } const iterator operator+(const int offset) { iterator out (*this); out += offset; return out; } }; }; } int main() { exscape::string s = "ABCDEF"; exscape::string::iterator i = s.begin(); std::cout &lt;&lt; *(i + 2) &lt;&lt; std::endl; } </code></pre> <p>The above fails with (line 632 is, of course, the *(i + 2) line):</p> <p>string.cpp: In function ‘int main()’: string.cpp:632: error: no match for ‘operator*’ in ‘*exscape::string::iterator::operator+(int)(2)’ string.cpp:105: note: candidates are: char&amp; exscape::string::iterator::operator*() </p> <p>*(2 + i) fails with:</p> <p>string.cpp: In function ‘int main()’: string.cpp:632: error: no match for ‘operator+’ in ‘2 + i’ string.cpp:434: note: candidates are: exscape::string exscape::operator+(const char*, const exscape::string&amp;)</p> <p>My guess is that I need to do some more overloading, but I'm not sure what operator I'm missing.</p> http://stackoverflow.com/questions/1695356/c-custom-events-with-overloads 0 C# Custom Events with Overloads Lienau 2009-11-08T04:17:54Z 2009-11-08T05:06:23Z <p>So I have a custom event like this:</p> <pre><code> Work w = new worker() w.newStatus += new worker.status(addStatus); w.doWork(); void addStatus(string status) { MessageBox.Show(status); } </code></pre> <p>and this:</p> <pre><code> public event status newStatus; public delegate void status(string status); public void doWork() { newStatus("Work Done"); } </code></pre> <p>If I were to make "addStatus" an overload, what would I have to do to pass overload parameters without creating a second delegate/event? </p> http://stackoverflow.com/questions/1686385/overloading-operator-to-a-char-buffer-in-c-can-i-tell-the-stream-length 0 Overloading operator>> to a char buffer in C++ - can I tell the stream length? exscape 2009-11-06T09:12:55Z 2009-11-06T11:30:11Z <p>I'm on a custom C++ crash course. I've known the basics for many years, but I'm currently trying to refresh my memory and learn more. To that end, as my second task (after writing a stack class based on linked lists), I'm writing my own string class.</p> <p>It's gone pretty smoothly until now; I want to overload operator>> that I can do stuff like cin >> my_string;. The problem is that I don't know how to read the istream properly (or perhaps the problem is that I don't know streams...). I tried a while (!stream.eof()) loop that .read()s 128 bytes at a time, but as one might expect, it stops only on EOF. I want it to read to a newline, like you get with cin >> to a std::string.</p> <p>My string class has an alloc(size_t new_size) function that (re)allocates memory, and an append(const char *) function that does that part, but I obviously need to know the amount of memory to allocate before I can write to the buffer.</p> <p>Any advice on how to implement this? I tried getting the istream length with seekg() and tellg(), to no avail (it returns -1), and as I said looping until EOF (doesn't stop reading at a newline) reading one chunk at a time.</p> http://stackoverflow.com/questions/442026/function-overloading-by-return-type 8 Function overloading by return type? dsimcha 2009-01-14T05:38:05Z 2009-11-05T14:53:03Z <p>Why don't more mainstream statically typed languages support function/method overloading by return type? I can't think of any that do. It seems no less useful or reasonable than supporting overload by parameter type. How come it's so much less popular?</p> http://stackoverflow.com/questions/1664096/overloading-standard-gorm-crud-methods 1 "Overloading" standard GORM CRUD methods archer 2009-11-02T22:19:23Z 2009-11-03T15:41:14Z <p>Wanna do the following:</p> <pre> BootStrap { def init = {servletContext -> ........ MyDomainClass.metaClass.save = {-> delegate.extraSave() //////// how to call original save() here? } } ......... } </pre> <p>P.S. MyDomainClass#extraSave is defined as <code>public void extraSave(){.....}</code></p> http://stackoverflow.com/questions/1636181/function-method-overloading-c-data-type-confusion 2 Function/Method Overloading C++: Data type confusion? Tom 2009-10-28T09:49:47Z 2009-11-03T15:34:21Z <p>Hi, I'm having some trouble overloading methods in C++. As an example of the problem, I have a class with a number of methods being overloaded, and each method having one parameter with a different data type. My question: is there a particular order in the class these methods should appear in, to make sure the correct method is called depending on its parameters data type?</p> <pre><code>class SomeClass{ public: ... void Method(bool paramater); void Method(std::string paramater); void Method(uint64_t paramater); void Method(int64_t paramater); void Method(uint8_t paramater); void Method(int8_t paramater); void Method(float paramater); void Method(double paramater); void Method(ClassXYZ paramater); } </code></pre> <p>I noticed there was problem because when running:</p> <pre><code>Method("string"); </code></pre> <p>it was calling:</p> <pre><code>Method(bool paramater); </code></pre> http://stackoverflow.com/questions/1503504/using-all-overloads-of-the-base-class 1 Using all overloads of the base class sold 2009-10-01T11:49:28Z 2009-10-27T07:45:02Z <p>When a subclass overrides a baseclass's method, all of the baseclass's overloads are not available from the subclass. In order to use them there should be added a <code>using BaseClass::Method;</code> line in the subclass.</p> <p>Is there a quick way to inheirt the baseclass's overloads for ALL of the overridden methods? (not needing to explicitly specify <code>using ...</code> for each method)</p> http://stackoverflow.com/questions/1628693/printing-using-one-n 0 printing using one '\n' Alex 2009-10-27T03:56:34Z 2009-10-27T04:03:58Z <p>I am pretty sure all of you are familiar with the concept of the Big4, and I have several stuffs to do print in each of the constructor, assignment, destructor, and copy constructor.</p> <p>The restriction is this:</p> <p>I CAN'T use more than one newline (e.g., ƒn or std::endl) in any method</p> <p>I can have a method called print, so I am guessing print is where I will put that precious one and only '\n', my problem is that how can the method print which prints different things on each of the element I want to print in each of the Big4? Any idea? Maybe overloading the Big4?</p> http://stackoverflow.com/questions/501069/f-functions-with-generic-parameter-types 4 F# functions with generic parameter types Noldorin 2009-02-01T16:09:47Z 2009-10-25T23:32:32Z <p>Hello,</p> <p>I am trying to figure out how to define a function that works on multiple types of parameters (e.g. int and int64). As I understand it, function overloading is not possible in F# (certainly the compiler complains). Take for example the following function.</p> <pre><code>let sqrt_int = function | n:int -&gt; int (sqrt (float n)) | n:int64 -&gt; int64 (sqrt (float n)) </code></pre> <p>The compiler of course complains that the syntax is invalid (type constraints in pattern matching are not supported it seems), though I think this illustrates what I would like to achieve: a function that operates on several parameter types and returns a value of the according type. I have a feeling that this is possible in F# using some combination of generic types/type inference/pattern matching, but the syntax has eluded me. I've also tried using the :? operator (dynamic type tests) and <em>when</em> clauses in the pattern matching block, but this still produces all sorts errors.</p> <p>As I am rather new to the language, I may very well be trying to do something impossible here, so please let me know if there is alternative solution.</p> http://stackoverflow.com/questions/1613089/overloading-of-getenumerator 1 Overloading of GetEnumerator udana 2009-10-23T12:24:24Z 2009-10-23T14:36:23Z <p>Can't i overload GetEnumerator () like</p> <pre><code>IEnumerator&lt;T&gt; IEnumerable&lt;T&gt;.GetEnumerator&lt;T&gt; ( T[] val1,T[] val2) { .... some code } </code></pre> http://stackoverflow.com/questions/1582625/why-is-method-overloading-not-defined-for-different-return-types 3 Why is method overloading not defined for different return types? gnuvince 2009-10-17T16:44:35Z 2009-10-17T23:28:16Z <p>In Scala, you can overload a method by having methods that share a common name, but which either have different arities or different parameter types. I was wondering why this wasn't also extended to the return type of a method? Consider the following code:</p> <pre><code>class C { def m: Int = 42 def m: String = "forty two" } val c = new C val i: Int = C.m val s: String = C.m </code></pre> <p>Is there a reason why this shouldn't work?</p> <p>Thank you,</p> <p>Vincent.</p> http://stackoverflow.com/questions/1567834/why-is-the-compiler-not-selecting-my-template-function-overload-in-the-following 3 Why is the compiler not selecting my template-function overload in the following example? Steve Guidi 2009-10-14T17:37:07Z 2009-10-14T18:11:21Z <p>Given the following function templates:</p> <pre><code>#include &lt;vector&gt; #include &lt;utility&gt; struct Base { }; struct Derived : Base { }; // #1 template &lt;typename T1, typename T2&gt; void f(const T1&amp; a, const T2&amp; b) { }; // #2 template &lt;typename T1, typename T2&gt; void f(const std::vector&lt;std::pair&lt;T1, T2&gt; &gt;&amp; v, Base* p) { }; </code></pre> <p>Why is it that the following code always invokes overload #1 instead of overload #2?</p> <pre><code>void main() { std::vector&lt;std::pair&lt;int, int&gt; &gt; v; Derived derived; f(100, 200); // clearly calls overload #1 f(v, &amp;derived); // always calls overload #1 } </code></pre> <p>Given that the second parameter of <code>f</code> is a derived type of <code>Base</code>, I was hoping that the compiler would choose overload #2 as it is a better match than the generic type in overload #1.</p> <p>Are there any techniques that I could use to rewrite these functions so that the user can write code as displayed in the <code>main</code> function (i.e., leveraging compiler-deduction of argument types)?</p> http://stackoverflow.com/questions/1566862/difference-between-variable-length-argument-and-function-overloading 1 Difference between variable-length argument and function overloading raj_arni 2009-10-14T14:57:35Z 2009-10-14T15:28:13Z <p>This C++ question seems to be pretty basic and general but still I want someone to answer.</p> <p>1) What is the difference between a function with variable-length argument and an overloaded function? 2) Will we have problems if we have a function with variable-length argument and another same name function with similar arguments?</p> http://stackoverflow.com/questions/1557069/should-i-duplicate-tests-for-convenience-overloads 3 Should I duplicate tests for convenience overloads? OwenP 2009-10-12T21:34:42Z 2009-10-13T11:50:13Z <p>It's really common for me to make convenience overloads for methods. Here's an example of something I might do:</p> <pre><code>public void Encode(string value) { Encode(value, DefaultEncoding); } public void Encode(string value, Encoding encoding) { // ... } </code></pre> <p>I'm starting to pay more attention to unit testing, and testing methods like this introduces some obstacles I'm not sure I trust myself to approach alone. The first and most important problem is whether I should duplicate tests for both overloads. For example, both methods should throw ArgumentNullException if <em>value</em> is null; is it more correct to recognize there <em>could</em> be different logic and write two tests or is it better to assume that the convenience overloads have no logic of their own?</p> <p>I've also got a secondary problem. My naming scheme is the same as Roy Osherove's: "MemberName_State_ExpectedResult". If I duplicate tests, then I have clashing names without introducing some oddball naming convention. How do you handle this if you duplicate tests?</p> http://stackoverflow.com/questions/1541314/when-does-it-make-more-sense-to-use-the-factory-pattern-rather-than-an-overloaded 4 When does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object? JaredCacurak 2009-10-09T00:46:24Z 2009-10-12T02:20:24Z <p>In Karl Seguin's <a href="http://codebetter.com/blogs/karlseguin/archive/2008/06/24/foundations-of-programming-ebook.aspx" rel="nofollow">Foundations of Programming</a> there is a small section on using the factory pattern. He closes the passage by stating "you can accomplish the same functionality with constructor overloading", but doesn't indicate when or why?</p> <p>So,when does it make more sense to use the factory pattern rather than an overloaded constructor to instantiate an object?</p> http://stackoverflow.com/questions/1511935/differences-between-template-specialization-and-overloading-for-functions 7 Differences between template specialization and overloading for functions? rlbond 2009-10-02T21:39:13Z 2009-10-05T14:49:53Z <p>So, I know that there is a difference between these two tidbits of code:</p> <pre><code>template &lt;typename T&gt; T inc(const T&amp; t) { return t + 1; } template &lt;&gt; int inc(const int&amp; t) { return t + 1; } </code></pre> <p>and</p> <pre><code>template &lt;typename T&gt; T inc(const T&amp; t) { return t + 1; } int inc(const int&amp; t) { return t + 1; } </code></pre> <p>I am confused as to what the functional differences between these two are. Can someone show some situations where these snippits act differently from each other?</p> http://stackoverflow.com/questions/1505696/php-call-vs-methodexists 3 PHP __call vs method_exists neo 2009-10-01T18:37:43Z 2009-10-01T19:07:19Z <p>The Project I'm working on contains something like a wrapper for call_user_func(_array) which does some checks before execution. One of those checks is method_exists (In Case the supplied first argument is an instance of a class and the second is a method name) The other is_callable. The function will throw an exception if one of those checks fails.</p> <p>My Code contains an array with function names (setFoo, setBar, etc.) and the php magic function for overloading (__call) which handles setting, replacing and deletion of certain variables (better certain array elements).</p> <p>The Problem: method_exists will return false if the function is not defined.</p> <p>Do I have any chance to get a true if the __call function does proper handling of the request?</p> http://stackoverflow.com/questions/1498874/why-is-this-an-overloading-ambiguity-in-gcc 1 Why is this an "overloading ambiguity" in gcc? unknown (google) 2009-09-30T15:26:09Z 2009-09-30T15:54:03Z <p>Why is this an error : ie. arent long long and long double different types ?</p> <pre><code>../src/qry.cpp", line 5360: Error: Overloading ambiguity between "Row::updatePair(int, long long)" and "Row::updatePair(int, long double)". </code></pre> <p>Calling code: . . pRow -> updatePair(924, 0.0); pRow -> updatePair(925, 0.0); .</p> http://stackoverflow.com/questions/1483418/can-i-overload-perls-and-a-problem-while-use-tie 2 Can I overload Perl's =? (And a problem while use Tie) Galaxy 2009-09-27T11:45:22Z 2009-09-28T05:34:09Z <p>I choose to use tie and find this:</p> <pre><code>package Galaxy::IO::INI; sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = {']' =&gt; []}; # ini section can never be ']' tie %{$self},'INIHash'; return bless $self, $class; } package INIHash; use Carp; require Tie::Hash; @INIHash::ISA = qw(Tie::StdHash); sub STORE { #$_[0]-&gt;{$_[1]} = $_[2]; push @{$_[0]-&gt;{']'}},$_[1] unless exists $_[0]-&gt;{$_[1]}; for (keys %{$_[2]}) { next if $_ eq '='; push @{$_[0]-&gt;{$_[1]}-&gt;{'='}},$_ unless exists $_[0]-&gt;{$_[1]}-&gt;{$_}; $_[0]-&gt;{$_[1]}-&gt;{$_}=$_[2]-&gt;{$_}; } $_[0]-&gt;{$_[1]}-&gt;{'='}; } </code></pre> <p>if I remove the last "$<em>[0]->{$</em>[1]}->{'='};", it does not work correctly. Why ?</p> <p>I know a return value is required. But "$<em>[0]->{$</em>[1]};" cannot work correctly either, and $<em>[0]->{$</em>[1]}->{'='} is not the whole thing.</p> <p><hr> Old post:</p> <p>I am write a package in Perl for parsing INI files. Just something based on <a href="http://search.cpan.org/perldoc/Config%3A%3ATiny" rel="nofollow"><code>Config::Tiny</code></a>.</p> <p>I want to keep the order of sections &amp; keys, so I use extra array to store the order.</p> <p>But when I use " <code>$Config-&gt;{newsection} = { this =&gt; 'that' }; # Add a section</code> ", I need to overload '<code>=</code>' so that "newsection" and "this" can be pushed in the array.</p> <p>Is this possible to make "<code>$Config-&gt;{newsection} = { this =&gt; 'that' };</code>" work without influence other parts ?</p> <p>Part of the code is:</p> <pre><code>sub new { my $invocant = shift; my $class = ref($invocant) || $invocant; my $self = {']' =&gt; []}; # ini section can never be ']' return bless $self, $class; } sub read_string { if ( /^\s*\[\s*(.+?)\s*\]\s*$/ ) { $self-&gt;{$ns = $1} ||= {'=' =&gt; []}; # ini key can never be '=' push @{$$self{']'}},$ns; next; } if ( /^\s*([^=]+?)\s*=\s*(.*?)\s*$/ ) { push @{$$self{$ns}{'='}},$1 unless defined $$self{$ns}{$1}; $self-&gt;{$ns}-&gt;{$1} = $2; next; } } sub write_string { my $self = shift; my $contents = ''; foreach my $section (@{$$self{']'}}) { }} </code></pre> http://stackoverflow.com/questions/1480085/whats-going-on-with-overriding-and-overloading-here-in-c 3 What's going on with overriding and overloading here in C++? BCS 2009-09-26T00:29:47Z 2009-09-26T01:04:31Z <p>This doesn't work:</p> <pre><code>class Foo { public: virtual int A(int); virtual int A(int,int); }; class Bar : public Foo { public: virtual int A(int); }; Bar b; int main() { b.A(0,0); } </code></pre> <p>It seems that by overriding <code>Foo::A(int)</code> with <code>Bar::A(int)</code> I have somehow hidden <code>Foo::A(int,int)</code>. If I add a <code>Bar::A(int,int)</code> things work.</p> <p><em>Does anyone have a link to a good description of what's going on here?</em></p> http://stackoverflow.com/questions/837864/java-overloading-vs-overwriting 0 Java overloading vs overwriting unknown (google) 2009-05-08T01:35:42Z 2009-09-25T04:51:29Z <p>Hi I just want to make sure I have these concepts right. Overloading in java means that you can have a constructor or a method with different number of arguments or different data types. i.e</p> <pre><code>public void setValue(){ this.value = 0; } public void setValue(int v){ this.value = v; } </code></pre> <p>How about this method? Would it still be considered overloading since it's returning a different data type?</p> <pre><code>public int setValue(){ return this.value; } </code></pre> <p><hr /></p> <p>Second question is: what is overwriting in java? Does it relate to inheritance. Let's I have the following:</p> <pre><code>public class Vehicle{ double basePrice = 20000; //constructor defined public double getPrice(){ return basePrice; } } public class Truck extends Vehicle{ double truckPrice = 14000; //constructor defined public double getPrice(){ return truckPrice; } } </code></pre> <p>So now let's say I have the following</p> <pre><code>Truck truck = new Truck(); </code></pre> <p>if I call </p> <pre><code>truck.super.getPrice() </code></pre> <p>this would return the price from the Vehicle class, 20,000</p> <p>if I call</p> <pre><code>truck.getPrice() </code></pre> <p>this would return the price in the truck class, 14,000</p> <p>IS MY KNOWLEDGE CORRECT FOR BOTH QUESTIONS? </p> http://stackoverflow.com/questions/1464232/overload-baseform 0 Overload Baseform Nana 2009-09-23T06:15:39Z 2009-09-24T03:20:08Z <p>How do i use overload in C#</p> <p>I have a sample codes that goes like this</p> <pre><code>Namespace Test Partial Class TestAccess Inherits BaseForm Dim db As New database Dim share As New ShareMethod Protected Overloads Overrides Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load MyBase.Page_Load(sender, e) </code></pre> <p>I tried using the converter, but keep getting error. </p> <p>And my overload doesnt have any function, so do i still use .....+....</p> <p>****UPDATED</p> <p>Here is my codes for the program which i want to inherit</p> <pre><code>namespace CRRBaseForm </code></pre> <p>{</p> <pre><code>public partial class TAView : BaseForm { protected override void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) { binddropdownlists(); } } </code></pre> <p>currently nothing happens. but when i did this; it tells me that i need to overload:</p> <pre><code> namespace CRRBaseForm { public partial class TAView : BaseForm { protected override void Page_Load(object sender, EventArgs e) { if (Page.IsPostBack == false) { Page_Load(); //call from BaseForm binddropdownlists(); } } </code></pre> <p>my baseform is as follow:</p> <pre><code>namespace CRRBaseForm { public partial class BaseForm : System.Web.UI.Page { protected virtual void Page_Load(object sender, EventArgs e) { //Check if the Session Login id null if (Session["UserID"] == null) {... ... ... </code></pre> http://stackoverflow.com/questions/1451464/how-do-i-get-intellisensecode-insight-features-like-of-jcreator-in-an-ide-of-li 0 How do I get intellisense(code insight) features like of Jcreator in an IDE of linux platform ? Pranav Nandan 2009-09-20T17:05:52Z 2009-09-20T17:05:52Z <p>I previously programmed a lot in JCreator, but since I moved to ubuntu. I miss my Jcreator more than anything.</p> <p>Beside Eclipse or Netbeans, are there some lightweight software that does my task. Tried already gedit, jedit, scite, geany etc. with APIs plugins. But I can't find anything like Jcreator ? I just have 256 MB SDRAM to spare in computer. </p> <p>Have got any alternative for the pop-ups of class-hierarchy after typing "." ? </p> <p>It really speeded my works because I had the function name which self cleared its nature and parameter list and order, even the overloaded types.</p> <p>Should I move to wine or VIM or something else ?</p> http://stackoverflow.com/questions/1442689/overloading-linqs-add-method-for-validation 0 Overloading LINQ's Add method for validation Kirk Broadhurst 2009-09-18T05:06:22Z 2009-09-18T05:36:29Z <p>I have an <code>Email</code> object and am attempting to validate the number of attachments that are in its <code>List&lt;Attachment&gt;</code> property.</p> <p>The trick is that we consume the <code>Send()</code> method across a WCF service. It's easy to validate it server side, but I want to validate it client side first.</p> <p>I have generated a library that others are supposed to use in order to consume the service, which in turn has a proxy containing all the objects and available methods. I think I should be able to overload the <code>Add()</code> method on the GenericList with some custom code so the collection is checked when anything is added, and if it exceeds the specified maximum then an exception is thrown.</p> <pre><code>public partial class List&lt;Attachment&gt; { public void Add(Attachment item) { base.Add(item); if (this.Count() &gt; maxAttachments) { throw new Exception("fail") } } } </code></pre> <p>This doesn't work - I can't class base.Add() and I can't define partial class with a specified type.</p> <p>How do I create an overload for the Add method so that I can include some custom code?</p>