473,396 Members | 2,033 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Is there any way to pass an unbound generic type to another class?

mps

I want to define a class that has a generic parameter that is itself a
generic class. For example, if I have a generic IQueue<Tinterface, and
class A wants to make use of a generic class that implements IQueue<Tfor
all types T (so it can make use of queues of various object types
internally). As useful as this is, it doesn't seem possible. The natural (but
illegal) notation would be something like

class A<QueueClasswhere QueueClass : IQueue<T>
{
a() { QueueClass<intqInt; ... }
b() { QueueClass<byteqByte; ... }
}

Is there any way to pass an unbound generic type to another class?

Thanks,

Mike
Dec 10 '06 #1
9 12753
Hi Mike,

C# generics doesn't work that way. The compiler needs to know what T is
going to be in order for you to constrain a generic argument to a generic
Type that requires T. You can use IQueue<objectinstead, for example, but
then you won't be able to use QueueClass<int>, of course.

Since you obviously need T to change after it's set anyway, its presence is
hyper-constraining your class. In other words, you should think about
making a non-generic interface such as IQueue instead since T doesn't
provide any value.

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:B8**********************************@microsof t.com...
>
I want to define a class that has a generic parameter that is itself a
generic class. For example, if I have a generic IQueue<Tinterface, and
class A wants to make use of a generic class that implements IQueue<Tfor
all types T (so it can make use of queues of various object types
internally). As useful as this is, it doesn't seem possible. The natural
(but
illegal) notation would be something like

class A<QueueClasswhere QueueClass : IQueue<T>
{
a() { QueueClass<intqInt; ... }
b() { QueueClass<byteqByte; ... }
}

Is there any way to pass an unbound generic type to another class?

Thanks,

Mike

Dec 10 '06 #2
mps
Thanks, Dave. I feared as much. Type-unsafe programming is not
(temperamentally) an option for me, so I am passing a factory with specific
methods for each of the types I am using (clumsy but liveable). This would be
a very useful feature and not to hard to make available IMO. Maybe in a
future release...

Thanks again,

Mike

"Dave Sexton" wrote:
Hi Mike,

C# generics doesn't work that way. The compiler needs to know what T is
going to be in order for you to constrain a generic argument to a generic
Type that requires T. You can use IQueue<objectinstead, for example, but
then you won't be able to use QueueClass<int>, of course.

Since you obviously need T to change after it's set anyway, its presence is
hyper-constraining your class. In other words, you should think about
making a non-generic interface such as IQueue instead since T doesn't
provide any value.

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:B8**********************************@microsof t.com...

I want to define a class that has a generic parameter that is itself a
generic class. For example, if I have a generic IQueue<Tinterface, and
class A wants to make use of a generic class that implements IQueue<Tfor
all types T (so it can make use of queues of various object types
internally). As useful as this is, it doesn't seem possible. The natural
(but
illegal) notation would be something like

class A<QueueClasswhere QueueClass : IQueue<T>
{
a() { QueueClass<intqInt; ... }
b() { QueueClass<byteqByte; ... }
}

Is there any way to pass an unbound generic type to another class?

Thanks,

Mike


Dec 10 '06 #3
mps
Just to supplement my previous email, I should point out that contrary to the
claim below, T provides plenty of value. Once I instantiate
QueueClass<Foof = new QueueClass<Foo>;
QueueClass<Barb = new QueueClass<Bar>;

the type system statically prevents me from saying things like
Bar bar = f.pop();

I stick by my previous statement that this would be a useful and
implementable feature that doesn't actually complicate the language. I'll
think about trying to give some input to the standardization process.

Mike

"Dave Sexton" wrote:
Hi Mike,

C# generics doesn't work that way. The compiler needs to know what T is
going to be in order for you to constrain a generic argument to a generic
Type that requires T. You can use IQueue<objectinstead, for example, but
then you won't be able to use QueueClass<int>, of course.

Since you obviously need T to change after it's set anyway, its presence is
hyper-constraining your class. In other words, you should think about
making a non-generic interface such as IQueue instead since T doesn't
provide any value.

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:B8**********************************@microsof t.com...

I want to define a class that has a generic parameter that is itself a
generic class. For example, if I have a generic IQueue<Tinterface, and
class A wants to make use of a generic class that implements IQueue<Tfor
all types T (so it can make use of queues of various object types
internally). As useful as this is, it doesn't seem possible. The natural
(but
illegal) notation would be something like

class A<QueueClasswhere QueueClass : IQueue<T>
{
a() { QueueClass<intqInt; ... }
b() { QueueClass<byteqByte; ... }
}

Is there any way to pass an unbound generic type to another class?

Thanks,

Mike


Dec 10 '06 #4
Hi Mike,

Let's say, hypothetically, that your original example will compile:

class A<QueueClasswhere QueueClass : IQueue<T>

How would you Type QueueClass when you want to create an instance of A?

For instance,

new A<IQueue<int>>();

wouldn't help you since you want T to be variable within the scope of a
single Type.

However,

new A<IQueue<T>>();

just doesn't make any sense. You'd be better off using:

class A<T: IQueue<T>

but that still wouldn't accomplish what you want since you'd have to assign
T to a specific Type:

new A<int>();

What you need is a non-generic interface or a better design pattern (from
what you've wrote it sounds like you found the latter :)

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:6E**********************************@microsof t.com...
Just to supplement my previous email, I should point out that contrary to
the
claim below, T provides plenty of value. Once I instantiate
QueueClass<Foof = new QueueClass<Foo>;
QueueClass<Barb = new QueueClass<Bar>;

the type system statically prevents me from saying things like
Bar bar = f.pop();

I stick by my previous statement that this would be a useful and
implementable feature that doesn't actually complicate the language. I'll
think about trying to give some input to the standardization process.

Mike

"Dave Sexton" wrote:
>Hi Mike,

C# generics doesn't work that way. The compiler needs to know what T is
going to be in order for you to constrain a generic argument to a generic
Type that requires T. You can use IQueue<objectinstead, for example,
but
then you won't be able to use QueueClass<int>, of course.

Since you obviously need T to change after it's set anyway, its presence
is
hyper-constraining your class. In other words, you should think about
making a non-generic interface such as IQueue instead since T doesn't
provide any value.

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:B8**********************************@microso ft.com...
>
I want to define a class that has a generic parameter that is itself a
generic class. For example, if I have a generic IQueue<Tinterface,
and
class A wants to make use of a generic class that implements IQueue<T>
for
all types T (so it can make use of queues of various object types
internally). As useful as this is, it doesn't seem possible. The
natural
(but
illegal) notation would be something like

class A<QueueClasswhere QueueClass : IQueue<T>
{
a() { QueueClass<intqInt; ... }
b() { QueueClass<byteqByte; ... }
}

Is there any way to pass an unbound generic type to another class?

Thanks,

Mike



Dec 10 '06 #5
Hi,

First of all, A<QueueClassis really confusing. Let's change it to use a
standard naming convention:

class AClass<Q>

Above I'm telling the compiler that I want to define a generic "template" so
that any type may replace Q at runtime. Now, you're suggesting that Q could
be generic itself. What you really want is "unbounded" Q it seems, but in
order for the compiler to accept that it must first accept bounded Q since
being unbounded means to be "more generic", and the compiler would therefore
need to be overextended to provide such functionality. Here's your
hypothetical generic, bounded Q syntax:

class AClass<Q<T>>

Now, I've told the compiler (hypothetically) that I want AClass to compile
using Q, where Q must be a generic type that accepts generic argument T.
This would be like adding a "where" statement to the normal syntax with some
hypothetical "generic" keyword:

class AClass<Qwhere Q : generic<T>

In other words, by placing <Ton the generic argument Q in the previous
example, we've added a constraint just like you could add an inheritance
constraint using the "where" statement, however some "class with one generic
argument" constraint isn't really useful at all. It's not polymorphic since
it doesn't provide a contract against which you can code AClass to use Q<T>.
It's like saying to the compiler, "give me any generic type that has one
generic argument, but I don't care about its contract". What's the point?

In your previous example you expressed a desire for something like this:

class AClass<Qwhere Q : IQueue<T>

Above we want the compiler (hypothetically) to allow Q to be any IQueue<T>
implementation where T is any type. It has the same flaw as in the previous
example but with an added level of indirection. In other words, just having
any generic type isn't useful, but this example does the same thing by
allowing T to be any type even though Q must be any IQueue. It's like
saying to the compiler, "Q can be any generic type that implements
IQueue<T>, but T doesn't need to be specified when AClass is used". The
problem now is that the compiler must know that T will be supplied when
AClass is typed, otherwise you won't be able to do anything with Q inside
AClass since you don't know what the public contract is without specifying
T. Although it might seem to you that the "IQueue" in IQueue<Tis the
contract, that's not the case. IQueue<Trequires T to be defined in order
for there to be any contract - that's the point of having a generic type in
the first place.

class AClass<Q, Twhere Q : IQueue<T>

The above works fine since Q and T must be defined in order to use AClass.

But want you really wanted was Q unbound, if I've understood you correctly:

class AClass<Q<>>

Well, now we're (hypothetically) telling the compiler that Q is constrained
to be any generic type at all. I'm not sure "robust" is the word I'd use ;)

I'm not sure what it is that you think the above could help you to
accomplish, but I believe that a good design pattern (most likely a simple
interface would do) should alleviate any need for generics like this.
Constraining a generic argument to be a generic type itself doesn't seem to
provide any real value, IMO.

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:72**********************************@microsof t.com...
The following seems to be clear and correct (and useful!). Am I missing
anything?

class A<QueueClass<>where QueueClass<T: IQueue<T>
{
...
}

class MyQueue<T: IQueue<T>
{
...
}

...
new A<MyQueue<>>();
This seems remarkably robust. For example, C# allows overloading based on
number of template parameters (not all of which you may want to leave
unbound), but that is also easily dealt withas follows:

class CurryQueue<T,U: IQueue<T{ ... }

new A<CurryQueue<,U>();

"Dave Sexton" wrote:
>Hi Mike,

Let's say, hypothetically, that your original example will compile:

class A<QueueClasswhere QueueClass : IQueue<T>

How would you Type QueueClass when you want to create an instance of A?

For instance,

new A<IQueue<int>>();

wouldn't help you since you want T to be variable within the scope of a
single Type.

However,

new A<IQueue<T>>();

just doesn't make any sense. You'd be better off using:

class A<T: IQueue<T>

but that still wouldn't accomplish what you want since you'd have to
assign
T to a specific Type:

new A<int>();

What you need is a non-generic interface or a better design pattern (from
what you've wrote it sounds like you found the latter :)

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:6E**********************************@microso ft.com...
Just to supplement my previous email, I should point out that contrary
to
the
claim below, T provides plenty of value. Once I instantiate
QueueClass<Foof = new QueueClass<Foo>;
QueueClass<Barb = new QueueClass<Bar>;

the type system statically prevents me from saying things like
Bar bar = f.pop();

I stick by my previous statement that this would be a useful and
implementable feature that doesn't actually complicate the language.
I'll
think about trying to give some input to the standardization process.

Mike

"Dave Sexton" wrote:

Hi Mike,

C# generics doesn't work that way. The compiler needs to know what T
is
going to be in order for you to constrain a generic argument to a
generic
Type that requires T. You can use IQueue<objectinstead, for
example,
but
then you won't be able to use QueueClass<int>, of course.

Since you obviously need T to change after it's set anyway, its
presence
is
hyper-constraining your class. In other words, you should think about
making a non-generic interface such as IQueue instead since T doesn't
provide any value.

--
Dave Sexton

"mps" <mp*@discussions.microsoft.comwrote in message
news:B8**********************************@microso ft.com...

I want to define a class that has a generic parameter that is itself
a
generic class. For example, if I have a generic IQueue<Tinterface,
and
class A wants to make use of a generic class that implements
IQueue<T>
for
all types T (so it can make use of queues of various object types
internally). As useful as this is, it doesn't seem possible. The
natural
(but
illegal) notation would be something like

class A<QueueClasswhere QueueClass : IQueue<T>
{
a() { QueueClass<intqInt; ... }
b() { QueueClass<byteqByte; ... }
}

Is there any way to pass an unbound generic type to another class?

Thanks,

Mike



Dec 12 '06 #6
Hi,
I think you're confusing yourself with some of the history. Let's take a
look at this from scratch.
Actually, I don't think I'm confused here at all.

I put some more thought into just to be sure :)

<snip>

(I've snipped the C++ example because I don't know C++)
Back to C#. The same as in my previous email:

class A<Q<>where Q<T: IQueue<T>
{
...
new Q<int>();
new Q<System.Windows.Window>();
...
}

Now if I create a generic Queue class, I can pass it to A, which uses it
to
create a variety of typed queues.

new A<MyQueue<>>()
I can see what you're trying to accomplish, but I just don't think that it's
possible for the C# compiler to work like that and I believe, as I've
already stated, there are better ways.

My understanding is that you want to be able to create multiple instances of
Q, a generic argument constrained to be a generic type itself, explicitly
typed inside the definition of class A.

To elaborate on your example, inside A:

void DoSomething()
{
Q<intiq = new Q<int>();
Q<longlq = new Q<long>();
}

So, in essence, you're trying to doing something like this:

class A<Q, Twhere Q : IQueue<Twhere T : int OR long

In other words, you're explicitly defining what T's domain should be and
expecting that the compiler will infer this from your code, whether or not
any given T is assignable to any other T. The compiler would have to locate
all of your references to Q in the class definition of A, and acknowledge
how you've typed T each time (and this is before A has any concrete
implementations - it's still just A's definition).

Once you try to create an implementation of A by typing a variable as
follows, the compiler would have to ensure that T's domain doesn't conflict
with the specified generic type:
new A<MyQueue<>>()
(note that you couldn't specify MyQueue<since it's not concrete, it's
another generic type)

If MyQueue is defined as follows then the compiler would have to raise an
error since the typed domain of T in A's class definition conflicts with
MyQueue<T>'s constraints on its own T:

class MyQueue<Twhere T : class

Or, if MyQueue has a differing number of generic arguments then the compiler
would have to raise an error as well.

All because you've defined T in A's definition before the compiler even knew
what Q, and therefore T, was going to be. So we'll assume that the compiler
will infer multiple definitions for T from the source code (T's domain).

Currently, both the compiler and the runtime, AFAIK, expect T to be typed as
a single type per implementation of A<Q>. In order for the above to work,
reflection would have to be extended somehow to allow generic reflection
into any given implementation of A so that Q can be realized as an array of
Types inferred from A's class definition. Therefore, this wouldn't just be
a compiler feature, but would require metadata for the runtime as well.

And since int and long are not assignable to one another, the compiler could
not allow the explicit use of T within A's class definition like it could
with Q.

So what you're left with, if it did actually compile, would be a generic
class (A) that uses two explicit interfaces for int and long, hard-coded as
such, while constraining Q to be any conforming generic implementation;
however, you could only use the contract defined by IQueue<Tanyway even
though T can no longer be specified by consumers. All of that and it's
still not doing anything that the following doesn't accomplish, in a clearer
manner too IMO:

class QInt32 : IQueue<int{}
class QInt64 : IQueue<long{}

class A<Q1, Q2>
where Q1 : IQueue, new() // note: non-generic interfaces
where Q2 : IQueue, new()
{
void DoSomething()
{
Q1 anyQ1 = new Q1();
Q2 anyQ2 = new Q2();

// here, you could work on anyQ1 and anyQ2 using the
// IQueue interface, which is the only thing that the compiler
// would allow even in your examples as well
}
}

If you want more than two generic queues to be encapsulated by a generic
class, I'd say that a better design pattern is probably in order anyway.

Have I missed anything important? If you still feel like it would be
possible (and more useful than my solution above) then please elaborate with
some examples.

<snip>

--
Dave Sexton

Dec 13 '06 #7
mps
Dave,
"Dave Sexton" wrote:
All of that and it's
still not doing anything that the following doesn't accomplish, in a clearer
manner too IMO:

class QInt32 : IQueue<int{}
class QInt64 : IQueue<long{}

class A<Q1, Q2>
where Q1 : IQueue, new() // note: non-generic interfaces
where Q2 : IQueue, new()
{
void DoSomething()
{
Q1 anyQ1 = new Q1();
Q2 anyQ2 = new Q2();

// here, you could work on anyQ1 and anyQ2 using the
// IQueue interface, which is the only thing that the compiler
// would allow even in your examples as well
}
}

If you want more than two generic queues to be encapsulated by a generic
class, I'd say that a better design pattern is probably in order anyway.

Have I missed anything important? If you still feel like it would be
possible (and more useful than my solution above) then please elaborate with
some examples.
Trying to work around it by using A<Q1, Q2as you suggest breaks
encapsulation. It requires all clients of A to know what Typed Queues A uses
internally. If A later wanted to use a Q<float>, all clients of A would need
to be recoded. If you think about the C++ allocator example, you can see why
clients wouldn't want to know all the possible types the Allocator<could be
used to allocate. The pattern remains genuinely useful (and the lack of it
will probably cause me a few hundred hours of pain in designing around the
type-unsafe use of Allocator<>).

This still seems easy enough to implement to me. The interesting thing is
that the compiler has the information to generate the form above
automatically, when compiling A. The compiler would effectively create the
form A<Q1,Q2and convert new A<MyQueue<>>() to
A<MyQueue<int>,MyQueue<long>>. If implementers of Q are allowed to put
constraints on T, they would need to be specified in the declaration of A:

class A<Q<>where Q<T: IQueue<Twhere T : IComparable

There shouldn't be any assignment compatibility issues because everything is
correctly typed.

I would go so far as to wager that this could be done entirely within the C#
compiler, without any CLR support.
Dec 13 '06 #8
Hi,
Trying to work around it by using A<Q1, Q2as you suggest breaks
encapsulation. It requires all clients of A to know what Typed Queues A
uses
internally. If A later wanted to use a Q<float>, all clients of A would
need
to be recoded.
That simply isn't true. IQueue (the non-generic interface) is providing the
contract for A to use, so we don't care whether Q is typed as a generic
type, and certainly don't care whether Q's parameter, T, is typed as float,
int, single, or whatever (that has been my point from the beginning). If
you wanted to consume A using float instead of long, for example, nothing in
my example of A would have to change. The only thing required is to create
a concrete implementation of the generic interface IQueue<T(or maybe even
just IQueue):

class QSingle : IQueue<float{}

A<QInt32, QSinglea = new A<QInt32, QSingle>();

The difference between our examples is that you want to be able to create
any arbitrary number of Q references typed within A's class definition and
have the compiler infer from your code the number of generic arguments that
should be placed above. I've suggested that any more than two generic
collections required by one class definition is probably a bad design to
begin with, so I really don't think it deserves first-class compiler support
with generics.
If you think about the C++ allocator example, you can see why
clients wouldn't want to know all the possible types the Allocator<could
be
used to allocate. The pattern remains genuinely useful (and the lack of it
will probably cause me a few hundred hours of pain in designing around the
type-unsafe use of Allocator<>).
Well, if Allocator is doing what I think it's doing it sounds like there's
some design flaw in the application anyway. Although, since I don't know
C++ I'm still not sure that I fully understand that example ;)
This still seems easy enough to implement to me. The interesting thing is
that the compiler has the information to generate the form above
automatically, when compiling A. The compiler would effectively create the
form A<Q1,Q2and convert new A<MyQueue<>>() to
A<MyQueue<int>,MyQueue<long>>. If implementers of Q are allowed to put
constraints on T, they would need to be specified in the declaration of A:

class A<Q<>where Q<T: IQueue<Twhere T : IComparable

There shouldn't be any assignment compatibility issues because everything
is
correctly typed.

I would go so far as to wager that this could be done entirely within the
C#
compiler, without any CLR support.
I guess C# could implement generics like C++ templates instead and actually
stub out the different implementations at compile-time, with all of the
extra checks that I mentioned in my last post. Stubbing would alleviate any
need for the special reflective properties that I mentioned too. However,
other compilers would have to be aware of this special metadata defining a
generic type that isn't supported by the runtime. A compiler would
therefore have to know that it must stub the implementations out itself by
analyzing the code and finding all references to A. Losing CLR support
might be the biggest flaw in the design.

I'm also still not convinced that your example above is any clearer than
mine. I actually think it's more confusing since you'll have absolutely no
idea what T might be without inspecting the full source code of A to find
T's hard-coded types. Of course, as the number of arguments increases so
does the complexity of my example, but fxcop recommends no more than 2
generic parameters anyway so any more indicates a poor design choice to me:

http://msdn2.microsoft.com/en-gb/lib...29(VS.80).aspx

--
Dave Sexton
Dec 13 '06 #9
mps <mp*@discussions.microsoft.comwrote:
>I would like to have a class that's parameterized by a generic class.
This is quite useful. It would have helped me this week with my class that
wants a generic queue.
I agree that this seems useful. I don't know the answer myself, so I
had to ask for help from type-theory people. So this answer comes from
them (no doubt distorted through my own limited understanding).

What you're asking for is proper "first class" second order
polymorphism. It's found in System F. Haskell supports it so long as
you write the type signatures explicitly. So does Caml and F#. The
paper to read on this subject is

http://research.microsoft.com/~akenn...gFToCSharp.pdf
by Andrew Kennedy and Don Syme (who came up with .net generics in the
first place I believe). Don's now working on a .net language called
F#. He gives the following F# code which does the essence of what you
want. Obviously, therefore, it's possible to achieve what you want
without altering the CLR.

type IQueueProvider =
interface
abstract Make: unit -'a list
// can also write the following clarify the quantification:
// abstract Make<'a: unit -'a list
end

let qnew2 = { new IQueueProvider with Make() = [] }

let testf2 (newf:IQueueProvider) =
let q1:int list = newf.Make() in
let q2:string list = newf.Make() in
()

do testf2 qnew2
As for how to achieve this in C#? My old Type-Theory supervisor from
university said that it's possible, and that I should read the paper
that I cited above to figure out how. If I have time I'll do that...

--
Lucian
Dec 14 '06 #10

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

Similar topics

3
by: Robert | last post by:
Python doesn't know the class of a method when container not direct class attribute: >>> class X: .... def f():pass .... g=f .... l= .... >>> X.g <unbound method X.f>
1
by: Arthur Dent | last post by:
Hi all... Heres what im looking to do.... I have a Generic class i wrote. Now, on another class, i want to add a method which can take in an object of my generic class... but the catch is, i want...
25
by: Lars | last post by:
Hi, I have a base class holding a generic list that needs to be accessed by both the base class and its subclasses. What is the best solution to this? I am fairly new to generics, but I am...
0
by: crazyone | last post by:
I've got a gaming framework i'm building and i want to save myself the trouble of reading and writting the complete game data to a custom file and load/save it to an XML file but i'm getting...
4
by: Andrew Ducker | last post by:
I have a collection of classes descending from a single root class (let's call it RootClass). They all currently have a property of Logical, of type Logical. However they actually return a...
13
by: rkausch | last post by:
Hello everyone, I'm writing because I'm frustrated with the implementation of C#'s generics, and need a workaround. I come from a Java background, and am currently writing a portion of an...
7
by: tadmill | last post by:
Is it possible for a class that accepts a generic type, to re-create another instance of itself with a property type of the passed class? ex. public class SomeClass<T> { private PropertyInfo...
24
by: =?Utf-8?B?U3dhcHB5?= | last post by:
Can anyone suggest me to pass more parameters other than two parameter for events like the following? Event: Onbutton_click(object sender, EventArgs e)" Event handler: button.Click += new...
2
by: SimonDotException | last post by:
I am trying to use reflection in a property of a base type to inspect the properties of an instance of a type which is derived from that base type, when the properties can themselves be instances of...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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...
0
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,...
0
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...
0
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,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.