473,788 Members | 2,825 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Bug or by design

Considering the below code, is it a bug that I can return
IEnumerable<Any Typeinstead of only IEnumerable<IFu as constrained in
the base class?

It is not possible to add a constraint to the concrete class
implementation of GetStuff as it errors saying that it inherits the
superclass constraint(s) (which makes sense).

interface IFu
{
int GetValue();
}

abstract class A
{
public abstract IEnumerable<TGe tStuff<T>() where T : IFu;
}

class B : A, IFu
{
public override IEnumerable<TGe tStuff<T>()
{
return (IEnumerable<T> )new List<object>(); //should this
generate a compile time error?
}

public int GetValue()
{
return 0;
}

}

class Program
{
static void Main(string[] args)
{
B b = new B();
foreach (IFu fu in b.GetStuff<B>() )
{
Console.WriteLi ne(fu.GetValue( ));
}
}
}

TIA,
JB
Jun 27 '08 #1
4 998
"John B" <jb******@yahoo .comwrote:
Considering the below code, is it a bug that I can return
IEnumerable<Any Typeinstead of only IEnumerable<IFu as constrained
in the base class?
[...]
return (IEnumerable<T> )new List<object>(); //should this generate a
compile time error?
If you use the (Type)x notation, you can cast almost anything to
anything without the compiler noticing. However, it will fail at
run-time. Try something like this to convince yourself:

object s = "blah"; // evidently a string
int i = (int) s;

Casts are generally not type-safe, and you should only use them if
you're convinced they will succeed. Otherwise use the "as" keyword or
include some sort of conditional test.

Eq.
Jun 27 '08 #2
Paul E Collins wrote:
"John B" <jb******@yahoo .comwrote:
>Considering the below code, is it a bug that I can return
IEnumerable<An yTypeinstead of only IEnumerable<IFu as constrained
in the base class?
[...]
return (IEnumerable<T> )new List<object>(); //should this generate a
compile time error?

If you use the (Type)x notation, you can cast almost anything to
anything without the compiler noticing. However, it will fail at
run-time. Try something like this to convince yourself:

object s = "blah"; // evidently a string
int i = (int) s;

Casts are generally not type-safe, and you should only use them if
you're convinced they will succeed. Otherwise use the "as" keyword or
include some sort of conditional test.

Eq.

Yep, it just seems strange but when i think about it, its not really any
different to doing the below in a constrained generic method.

return (IEnumerable<IF u>)new List<object>();

Cheers,

JB
Jun 27 '08 #3
Can you give a bit more context here? There are ways of working with
inherited types and generics (using specific constraints), but whether
they apply depends on the scenario. There are also some LINQ
extensions (Cast, OfType) that might be of use, or you can implement
this type of cast directly using iterator blocks (yield return).

Of course - a better question would be why you need to use
List<objectin a generic type - that suggests you may have missed a
trick (sometimes necessary, but very rarely).

Marc
Jun 27 '08 #4
Marc Gravell wrote:
Can you give a bit more context here? There are ways of working with
inherited types and generics (using specific constraints), but whether
they apply depends on the scenario. There are also some LINQ
extensions (Cast, OfType) that might be of use, or you can implement
this type of cast directly using iterator blocks (yield return).

Of course - a better question would be why you need to use
List<objectin a generic type - that suggests you may have missed a
trick (sometimes necessary, but very rarely).

Marc
Thanks Marc but thats ok.
I was just overriding an inherited method:
IEnumerable<TGe tSomething() where T : IMyInterface

When I overrode it, there were no constraints on the method and I just
thought it was strange.
But then I realized that the constraint enforcement is at the caller end
not at the implementation end.
So I can return anything but it will obviously result in a
invalidcastexce ption if it cannot be cast to the specified type.

In the end I did go with
foreach(IFu fu in fuItems)
{
yield return fu;
}
Thanks,
JB
Jun 27 '08 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2115
by: adb | last post by:
I came up with a replication configuration that is basically the result of all the restrictions of replication as well as the restrictions of allowable software on work PC's and I was curious if anyone would point out any flaws or possible problems with the design. I'm limited to Access 2000 professional edition (Thus I cannot use indirect sync or internet sync) and cannot install anythird party controls (i.e.
3
4143
by: zlst | last post by:
Many technological innovations rely upon User Interface Design to elevate their technical complexity to a usable product. Technology alone may not win user acceptance and subsequent marketability. The User Experience, or how the user experiences the end product, is the key to acceptance. And that is where User Interface Design enters the design process. While product engineers focus on the technology, usability specialists focus on the user...
0
1915
by: Edward Diener | last post by:
In Borland's VCL it was possible to divide a component into design time and run time DLLs. The design time DLL would only be necessary when the programmer was setting a component's properties or events in the Object Inspector, the equivalent to the VS .NET Windows form designer. The run-time DLL would only contain the code necessary at run-time. The design time DLL referenced the run-time DLL, but not vice-versa. This allowed the run-time...
7
3020
by: Shimon Sim | last post by:
I have a custom composite control I have following property
2
2378
by: Paul Cheetham | last post by:
Hi, I have moved an application from VS2003 to VS2005, and I am now unable to view most of my forms in the designer. The majority of the forms in my project are derived from class PACForm, (which itself derives from System.Windows.Forms.Form) Whenever I try to open on of these forms in the designer, I get an error, stating it is unable to load one or more of the requested types. (Full text at the bottom of this message)
1
6341
by: Nogusta123 | last post by:
Hi, I have had a lot of problems getting web pages, master pages and content pages to render in VS2005 design view the same as they would in Internet Explorer. I did a lot of looking on the internet for answers but didn't have much luck. Anyway I believe I have found the causes of the problems and thought I should share them in case any one else is feeling the pain and also to find out what other peoples opinions are, on whether these...
0
2512
by: YellowFin Announcements | last post by:
Introduction Usability and relevance have been identified as the major factors preventing mass adoption of Business Intelligence applications. What we have today are traditional BI tools that don't work nearly as well as they should, even for analysts and power users. The reason they haven't reached the masses is because most of the tools are so difficult to use and reveal so little
19
3174
by: neelsmail | last post by:
Hi, I have been working on C++ for some time now, and I think I have a flair for design (which just might be only my imagination over- stretched.. :) ). So, I tried to find a design certification, possibly that involves C++, but, if not, C++ and UML. All I could find was Java + UML design certifications (one such is detailed on http://www.objectsbydesign.com/tools/certification.html). Although UML is expected to be language independent,...
10
3679
by: vital | last post by:
Hi, I am designing the middle tier of a project. It has 6 classes and microsoft application data access block. The six classes are DBServices, Logger, ProjectServices ... etc. and all these classes talk to front-end directly. Do I need to use any design pattern in this? or what kind of design pattern is this?
4
2468
by: Ken Fine | last post by:
I've been living with a frustrating issue with VS.NET for some months now and I need to figure out what the problem is. Hopefully someone has run into the same issue and can suggest a fix. I suspect some permissions problem. I'm running VS.NET 2008 in Vista. Symptoms and observations: * ASP.NET's native ImageMap and Image controls work just fine and provide a design-time preview of images that are referenced via the ImageUrl property *...
0
9498
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10366
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10175
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
10112
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9969
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8993
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6750
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
4070
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2894
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.