Tagged Questions
The sealed tag has no wiki summary.
19
votes
2answers
516 views
Why isn't List<T> sealed?
This question came to mind after reading the answer to this question; which basically made the point that List<T> has no virtual methods, since it was designed to be "fast, not extensible".
...
12
votes
4answers
399 views
Should I seal all classes I know shouldn't ever be used as a base class?
Should I seal all classes I know shouldn't ever be used as a base class even when there are no tangible performance or security concerns, or is this just adding cruft?
11
votes
3answers
756 views
Should IEquatable<T>, IComparable<T> be implemented on non-sealed classes?
Anyone have any opinions on whether or not IEquatable<T> or IComparable<T> should generally require that T is sealed (if it's a class)?
This question occurred to me since I'm writing a ...
9
votes
9answers
955 views
Why aren't classes sealed by default?
I was just wondering, since the sealed keyword's existence indicates that it's the class author's decision as to whether other classes are allowed to inherit from it, why aren't classes sealed by ...
8
votes
2answers
1k views
8
votes
3answers
477 views
7
votes
9answers
673 views
Why does this C# class declaration compile?
This question really is kinda pointless, but I'm just curious:
This:
public sealed class MyClass
{
protected void MyMethod(){}
}
compiles, but gives a warning
while This:
public sealed class ...
7
votes
9answers
2k views
Why does the 'sealed' keyword exist in .Net?
A large number of classes in the .Net framework are marked as 'sealed', preventing you from inheriting those classes with your own. Surely this goes against the nature of object orientation, where you ...
6
votes
1answer
386 views
Are sealed classes enforced in Java and, if yes, how?
It is possible to define sealed classes in Scala, which are basically final except if the sub-classing happens in the same file.
It seems that the JVM doesn't allow final class bytecode and ...
5
votes
3answers
77 views
'Protected member in sealed class' warning (a singleton class)
I've implemented a singleton class and keep getting the warning that a method I'm writing is a 'new protected member declared in a seal class.' It's not affecting the build but I don't really want to ...
5
votes
3answers
179 views
What are the 'ref' and 'sealed' keywords in C++?
I've just seen some (presumably) C++ code which sports two "keywords" unknown to me (I'm assuming keywords but, since I have no context, they may be simple #define things).
They also don't seem to ...
5
votes
5answers
166 views
How to forbid a class method/property to be overriden in C#?
I believe I want a some methods and properties of a class to be unoverridable and use the base's implementation in all derived classes. How to achieve this? sealed keyword doesn't seem to work and ...
5
votes
6answers
910 views
5
votes
2answers
728 views
Evidence for sealed class performance benefit
My team is wrestling with the sealed class debate internally and I would like to simplify the debate down to a matter of design and get the performance myth off the debate agenda.
Can anyone post ...
5
votes
1answer
145 views
Can I make a type “sealed except for internal types”
I want to make a type that can be inherited from by types in the same assembly, but cannot be inherited from outside of the assembly. I do want the type to be visible outside of the assembly.
Is this ...
5
votes
2answers
99 views
Are private classes being sealed at compilation?
Assume the following: we have class B, which is a private class nested inside class A. There isn't any class inheriting from class B. The question is: will the compiler automatically mark class B as ...
5
votes
5answers
894 views
Do the access levels and modifiers (private, sealed, etc) serve a security purpose in C#?
I've seen that you can manipulate private and internal members using reflection. I've also seen it said that a 'sealed' class is more secure that one that isn't.
Are the modifiers "public, ...
4
votes
5answers
2k views
Sealed method in C#
I am a newbie in C#.I am reading about Sealed keyword.I have got about sealed class.I have read a line about Sealed method where we can make Sealed method also.The line was (By declaring method as ...
4
votes
2answers
620 views
Why is String class final? [closed]
Possible Duplicate:
Why is String final in Java?
There are various moments in my programming life that I wished the the String class had not been final/sealed/NotInheritable.
What are the ...
4
votes
6answers
334 views
Change “ToString” for a sealed class
I have a class I am working with:
public sealed class WorkItemType
It's ToString is weak (Just shows Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItemType).
Is there anyway to override ...
3
votes
2answers
106 views
Why PasswordBox is Sealed in Silverlight?
A simple question, but google has no answer on that!
I'm hitting a wall today, because the PasswordBox in Silverlight is Sealed. I have no idea why they do that. Is somebody have an idea on that?
3
votes
2answers
71 views
Overriding a single interface method when the implementing class is sealed
This is probably easiest to explain with code (this is of course not the actual code but it has the same properties):
I have an interface that looks something like this:
public interface ...
3
votes
5answers
3k views
What is an internal sealed class in C#?
I was looking through some C# code for extending language support in VS2010 (Ook example). I saw some classes called internal sealed class
What do these do? Would one use them?
Thanks
3
votes
4answers
109 views
Is there any way to prevent replacement of JavaScript object properties?
I would like to make an object's structure immutable, preventing its properties from being subsequently replaced. The properties need to be readable, however. Is this possible?
I'm sure there are no ...
3
votes
5answers
1k views
c++ sealed and interface
I noticed that there are sealed and interface keywords in C++. Is this just for CLR C++?
If not, when were sealed and interface added to the C++ standard? Do they have the same meaning in C++ as they ...
3
votes
3answers
1k views
Mocking a method that returns a sealed class in RhinoMocks
Running this code:
_foo = MockRepository.GenerateStub<IBar>();
_foo.Stub(x => x.Foo()).Return("sdf");
When
public interface IBar
{
string Foo();
}
public class Bar : IBar
{
public ...
2
votes
1answer
231 views
Why do WinRT types have to be sealed?
In several places (e.g. "Creating Windows Runtime Components for JavaScript, in C# and Visual Basic" on MSDN), I've seen it specified that, if you write a class in .NET that you want to use from ...
2
votes
5answers
298 views
Sealed property of abstract class
Please consider the following design:
public interface IBook
{
string Author
{
get;
set;
}
string Title
{
get;
set;
}
}
abstract class ...
2
votes
5answers
187 views
Sealing an interface after implementing it
I am working on a small project and I came across that problem.
The project output is a library containing an interface. I would like to implement that interface and seal the functions in it like ...
2
votes
1answer
108 views
Unit testing a third party API with sealed concrete classes
just started TDD and all was going well until I hit this brick wall.
I am writing a facade around a third party API. The API is quite nice in that everything is accessed via interfaces, so is easily ...
2
votes
3answers
177 views
How is this virtual method call faster than the sealed method call?
I am doing some tinkering on the performance of virtual vs sealed members.
Below is my test code.
The output is
virtual total 3166ms
per call virtual 3.166ns
sealed total 3931ms
per call sealed ...
2
votes
5answers
462 views
How can I XML Serialize a Sealed Class with No Parameterless Constructor?
I'm currently using an XMLSerializer to serialize a list of a class of my own. One of the class's properties is an instance of a sealed class that does not have a parameterless constructor, so the ...
2
votes
3answers
79 views
How can I Databind to a Sealed Class?
I'm trying to bind some WPF controls to a sealed class provided to me. Because it is sealed, I cannot inherit from it to create a class that implements INotifyPropertyChanged. So I'm not sure how I ...
2
votes
2answers
357 views
How to override functions from String class in C#
For example, I need to see if a string contains a substring, so I just do:
String helloworld = "Hello World";
if(helloworld.Contains("ello"){
//do something
}
but if I have an array of items
...
2
votes
3answers
702 views
c++ virtual (sealed) function
I am using classes from a dll in my c++ project. All is working fine, until...
When trying to call a certain method (listed in the object browser), I am getting an error that this method is not a ...
2
votes
2answers
1k views
Is there any functional difference between c# sealed and Java's final keyword?
In Java final applies to more than just a class.
So, I wonder: is there any functional difference between the two keywords?
Thank you, and sorry for a relatively noob question.
A quick Google ...
2
votes
1answer
321 views
What part of LINQ to SQL's provider model makes it impossible to extend it to support third party (read: Non-Microsoft) databases?
There were supposedly some classes in the LINQ to SQL provider model that were sealed--but I never really figured out exactly which classes need to be 'unsealed' in order to use it.
Hypothetically ...
1
vote
1answer
53 views
Sealing jar files in IntelliJ
How can be jar files sealed using IntelliJ idea?
I believe it is made with jar cmf command, but how can it be achieved in IntelliJ?
1
vote
3answers
121 views
F#: Unable to inherit from List<'T> in F# interactive
> type XList<'T> (_collection : seq<'T>) =
inherit List<'T> (_collection)
member this.Add _item = if not <| this.Contains _item then base.Add ...
1
vote
2answers
168 views
Custom MediaElement
I am currently using some MediaElements in an application I am creating. I am dynamically creating them and adding them to a wrap panel.
The problem is I need to be able to add a key to them so I ...
1
vote
4answers
1k views
C#: Mocking and testing protected (or private) methods in sealed classes — approaches
I have a sealed class with protected methods whose behaviour I want to test. This makes it hard to test directly, and hard to mock.
It's in a codebase that wasn't developed in a TDD manner, and I'm ...
1
vote
1answer
167 views
sealed class implementation query
I was reading the C++ faqs on http://www2.research.att.com/~bs/bs_faq2.html , when i came accross this code to implement a 'sealed' class:
class Base{
public:
friend class A;
private:
...
1
vote
2answers
88 views
Why can I seal a class implementing an interface but cant seal a member?
Given this interface
public interface IMyInterface
{
string Method1();
}
Why is this valid
public sealed class InheretedFromInterfaceSealed: IMyInterface
{
public string Method1()
{
...
1
vote
4answers
191 views
Why is the sealed keyword not included in the list of access modifiers?
I think sealed should be included in the list of access modifiers in C# language. Can somebody tell the reason why it has been excluded?
1
vote
2answers
216 views
Is it possible to use AutoMapper to wrap methods?
I have two classes:
public class TestClass1
{
public int TestInt { get; set; }
public void TestMethod()
{
// Do something
}
}
public class TestClass2
{
public int ...
1
vote
2answers
96 views
Sealed classes and Object Browser
While inspecting the the .net object model in the Object Browser window, I came across the lack of information on sealed classes.
If for instance, one navigates to the mscorlib container -> System ...
1
vote
2answers
316 views
private constructor, subclassing and sealed
If one can prevent subclassing by declaring private constructor in the base class, why do we need "sealed" keyword? Is it so because CLI can optimize it better? maybe.
Thanks.
1
vote
1answer
71 views
What do the Items on the properties tab of MSVC++ mean?
I was playing around with my MSVC++ compiler, and the properties tab for my point class said:
IsAbstract - false
IsInjected - false
IsManaged - false
IsSealed - false
IsTemplate - false
...
0
votes
0answers
89 views
Specializing Generic Sealed Types. Part 1
Suppose I want a generic abstract tree type and then want to specialize it to create specific types of trees. For example I might have:
sealed abstract class AST[T <: AST[T]] {
def child : ...
0
votes
3answers
68 views
How to have a sealed constructor?
I have a baseclass which has public contructors.
The baseclass is not sealed and is not abstract.
There is one constructor which I desire to be sealed. Is this possible?
My current attempt results ...