class CustomClass<T> where T: bool
{
public CustomClass(T defaultValue)
{
init(defaultValue); // why can't the compiler just use void init(bool) here?
}
public void init(bool defaultValue)
{
}
// public void init(int defaultValue) will be implemented later
}
Hello. This seems to be a simple question, but I couldn't find an answer on the Internet: Why won't the compiler use the init method? I simply want to provide different methods for different types.
Instead it prints the following error message: "The best overloaded method match for 'CustomClass.init(bool)' has some invalid arguments"
I would be glad about a hint.
Best regards, Chris
C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...
Compared to other languages—like Java, PHP, or C#—C is a relatively simple language to learn for anyone just starting to learn computer programming because of its limited number of keywords.
What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.
In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.
The compiler cannot use init(bool)
because at compile-time it cannot know that T
is bool
. What you are asking for is dynamic dispatch — which method is actually being called depends on the run-time type of the argument and cannot be determined at compile-time.
You can achieve this in C# 4.0 by using the dynamic
type:
class CustomClass<T>
{
public CustomClass(T defaultValue)
{
init((dynamic)defaultValue);
}
private void init(bool defaultValue) { Console.WriteLine("bool"); }
private void init(int defaultValue) { Console.WriteLine("int"); }
private void init(object defaultValue) {
Console.WriteLine("fallback for all other types that don’t have "+
"a more specific init()");
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With