Class B { public B() {} }
Class A : B {
public static string ABC = "myABC";
public A() {}
}
main Program:
B myObject = new A();
and now is it possible to access "ABC" through "myObject" without modifying
the source code in Class A and Class B.
Thanks 9 1926
Class B { public B() {} }
>
Class A : B {
public static string ABC = "myABC";
public A() {}
}
main Program:
B myObject = new A();
and now is it possible to access "ABC" through "myObject" without
modifying the source code in Class A and Class B.
Thanks
As it's a static variable (in type A), you can only access it through the
Type A:
A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A),
so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method:
public virtual string MyMethod() { return "nil"; }
and A overrides it:
public override string MyMethod() { return A.ABC; }
then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting
But there are not only 1 static variable in Class A, .... i don't wanna make
every function for each static variable
"Hans Kesting" <ne***********@spamgourmet.comwrote in message
news:c0**************************@news.microsoft.c om...
>Class B { public B() {} }
Class A : B { public static string ABC = "myABC"; public A() {} } main Program:
B myObject = new A();
and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B.
Thanks
As it's a static variable (in type A), you can only access it through the
Type A:
A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like
A),
so your myObject (which is "just a B") doesn't know anything about that
ABC.
*if* B declares a (virtual) method:
public virtual string MyMethod() { return "nil"; }
and A overrides it:
public override string MyMethod() { return A.ABC; }
then your myObject can still access the contents of ABC, using this
MyMethod()
Hans Kesting
You may want to explain what you are trying to do so that we can understand
why not using A.ABC is not something that fit your needs and why accessing
static members through an instance member would make sense. It could raise
alternate approach to the problem you are trying to solve..
---
Patrice
"LamSoft" <[nospam]la*****@lamsoft.neta écrit dans le message de news: eF**************@TK2MSFTNGP06.phx.gbl...
But there are not only 1 static variable in Class A, .... i don't wanna
make every function for each static variable
"Hans Kesting" <ne***********@spamgourmet.comwrote in message
news:c0**************************@news.microsoft.c om...
>>Class B { public B() {} }
Class A : B { public static string ABC = "myABC"; public A() {} } main Program:
B myObject = new A();
and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B.
Thanks
As it's a static variable (in type A), you can only access it through the Type A: A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A), so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method: public virtual string MyMethod() { return "nil"; } and A overrides it: public override string MyMethod() { return A.ABC; } then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting
I am trying to make a language file and put all Static variables into each
different cs.
For example:
Class english : language{
public static string TEST = "test";
}
Class chinese : language {
public static string TEST = "´ú¸Õ";
}
Class language {}
and now i wanna access the TEST variable, but according to which language is
being selected ..
and I expected the following and something like that...
Language myLanguage = new english();
myLanguage.TEST // output will be "test"
Language myLanguage = new chinese();
myLanguage.TEST // output will be "´ú¸Õ"
Thank you very much.
"Patrice" <http://www.chez.com/scribe/wrote in message
news:Oh****************@TK2MSFTNGP03.phx.gbl...
You may want to explain what you are trying to do so that we can
understand why not using A.ABC is not something that fit your needs and
why accessing static members through an instance member would make sense.
It could raise alternate approach to the problem you are trying to solve..
---
Patrice
"LamSoft" <[nospam]la*****@lamsoft.neta écrit dans le message de news: eF**************@TK2MSFTNGP06.phx.gbl...
>But there are not only 1 static variable in Class A, .... i don't wanna make every function for each static variable
"Hans Kesting" <ne***********@spamgourmet.comwrote in message news:c0**************************@news.microsoft. com...
>>>Class B { public B() {} }
Class A : B { public static string ABC = "myABC"; public A() {} } main Program:
B myObject = new A();
and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B.
Thanks As it's a static variable (in type A), you can only access it through the Type A: A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A), so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method: public virtual string MyMethod() { return "nil"; } and A overrides it: public override string MyMethod() { return A.ABC; } then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting
On Jul 18, 6:21 pm, Hans Kesting <news.2.han...@spamgourmet.com>
wrote:
Class B { public B() {} }
Class A : B {
public static string ABC = "myABC";
public A() {}
}
main Program:
B myObject = new A();
and now is it possible to access "ABC" through "myObject" without
modifying the source code in Class A and Class B.
Thanks
As it's a static variable (in type A), you can only access it through the
Type A:
A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A),
so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method:
public virtual string MyMethod() { return "nil"; }
and A overrides it:
public override string MyMethod() { return A.ABC; }
then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting
Hi...
What is the utility of access a variable via a method when you have
direct access to that variable...
but still Hans provided a very good way to access static variable
through a method...
Masudur
First, have you looked at localization capabilities offered by the.NET
framework ?
If you want to access those members through an instance variable, why making
them static ? (I'm not sure but I see nowhere that you would really declare
them static on purpose ?).
Another option is to make them static but to have a single class and provide
the language they should provide. Remember that being a static member you
can stuff whatever you want (ie. your labels could come from any data
structure filled with strings for each supported language).
Or drop the static keyword and have your classes inherits and overrides your
default language class (could be abstract or an interface to make sure you
provide the appropriate text for each class).
For now it llklks like the code would direct to choose a design while you
choosed anothe design for the declarations. You have to match both aspects
(and have a llok at localization features if not already done).
--
Patrice
"LamSoft" <[nospam]la*****@lamsoft.neta écrit dans le message de news: ue**************@TK2MSFTNGP02.phx.gbl...
>I am trying to make a language file and put all Static variables into each different cs.
For example:
Class english : language{
public static string TEST = "test";
}
Class chinese : language {
public static string TEST = "´ú¸Õ";
}
Class language {}
and now i wanna access the TEST variable, but according to which language
is being selected ..
and I expected the following and something like that...
Language myLanguage = new english();
myLanguage.TEST // output will be "test"
Language myLanguage = new chinese();
myLanguage.TEST // output will be "´ú¸Õ"
Thank you very much.
"Patrice" <http://www.chez.com/scribe/wrote in message
news:Oh****************@TK2MSFTNGP03.phx.gbl...
>You may want to explain what you are trying to do so that we can understand why not using A.ABC is not something that fit your needs and why accessing static members through an instance member would make sense. It could raise alternate approach to the problem you are trying to solve..
--- Patrice
"LamSoft" <[nospam]la*****@lamsoft.neta écrit dans le message de news: eF**************@TK2MSFTNGP06.phx.gbl...
>>But there are not only 1 static variable in Class A, .... i don't wanna make every function for each static variable
"Hans Kesting" <ne***********@spamgourmet.comwrote in message news:c0**************************@news.microsoft .com... Class B { public B() {} } > Class A : B { public static string ABC = "myABC"; public A() {} } main Program: > B myObject = new A(); > and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B. > Thanks >
As it's a static variable (in type A), you can only access it through the Type A: A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A), so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method: public virtual string MyMethod() { return "nil"; } and A overrides it: public override string MyMethod() { return A.ABC; } then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting
On Jul 18, 6:21 pm, Hans Kesting <news.2.han...@spamgourmet.com>
wrote:
>>Class B { public B() {} }
Class A : B { public static string ABC = "myABC"; public A() {} } main Program: B myObject = new A();
and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B.
Thanks
As it's a static variable (in type A), you can only access it through the Type A: A.ABC, not through an instance. Type B doesn't know anything about things declared in derived types (like A), so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method: public virtual string MyMethod() { return "nil"; } and A overrides it: public override string MyMethod() { return A.ABC; } then your myObject can still access the contents of ABC, using this MyMethod() Hans Kesting
Hi...
What is the utility of access a variable via a method when you have
direct access to that variable...
but still Hans provided a very good way to access static variable
through a method...
Masudur
Not much use, granted. But if you really want to have a static variable
that you still want to be able to access through an instance of an inherited
class, you need tricks like these.
Hans Kesting
Static members aren't what you want here. Read-only properties sound like a
better approach. You could try something like this (not tested):
public interface ILanguage
{
string Test { get; }
}
public class English : ILanguage
{
public string Test
{
get { return "test"; }
}
}
public class French : ILanguage
{
public string Test
{
get { return "le test"; }
}
}
A different approach might be:
public class Localization
{
private Dictionary<string, stringStrings;
static Localization(string lang)
{
// Load appropriate data into this.Strings from XML, SQL, etc.
}
}
You could then provide an indexer to access the values as follows:
Localization loc = new Localization("en");
loc["test"] // output would be "test"
"LamSoft" <[nospam]la*****@lamsoft.netwrote in message
news:ue**************@TK2MSFTNGP02.phx.gbl...
>I am trying to make a language file and put all Static variables into each different cs.
For example:
Class english : language{
public static string TEST = "test";
}
Class chinese : language {
public static string TEST = "´ú¸Õ";
}
Class language {}
and now i wanna access the TEST variable, but according to which language
is being selected ..
and I expected the following and something like that...
Language myLanguage = new english();
myLanguage.TEST // output will be "test"
Language myLanguage = new chinese();
myLanguage.TEST // output will be "´ú¸Õ"
Thank you very much.
"Patrice" <http://www.chez.com/scribe/wrote in message
news:Oh****************@TK2MSFTNGP03.phx.gbl...
>You may want to explain what you are trying to do so that we can understand why not using A.ABC is not something that fit your needs and why accessing static members through an instance member would make sense. It could raise alternate approach to the problem you are trying to solve..
--- Patrice
"LamSoft" <[nospam]la*****@lamsoft.neta écrit dans le message de news: eF**************@TK2MSFTNGP06.phx.gbl...
>>But there are not only 1 static variable in Class A, .... i don't wanna make every function for each static variable
"Hans Kesting" <ne***********@spamgourmet.comwrote in message news:c0**************************@news.microsoft .com... Class B { public B() {} } > Class A : B { public static string ABC = "myABC"; public A() {} } main Program: > B myObject = new A(); > and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B. > Thanks >
As it's a static variable (in type A), you can only access it through the Type A: A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A), so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method: public virtual string MyMethod() { return "nil"; } and A overrides it: public override string MyMethod() { return A.ABC; } then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting
Static members aren't what you want here. Read-only properties sound like a
better approach. You could try something like this (not tested):
public interface ILanguage
{
string Test { get; }
}
public class English : ILanguage
{
public string Test
{
get { return "test"; }
}
}
public class French : ILanguage
{
public string Test
{
get { return "le test"; }
}
}
A different approach might be:
public class Localization
{
private Dictionary<string, stringStrings;
static Localization(string lang)
{
// Load appropriate data into this.Strings from XML, SQL, etc.
}
}
You could then provide an indexer to access the values as follows:
Localization loc = new Localization("en");
loc["test"] // output would be "test"
"LamSoft" <[nospam]la*****@lamsoft.netwrote in message
news:ue**************@TK2MSFTNGP02.phx.gbl...
>I am trying to make a language file and put all Static variables into each different cs.
For example:
Class english : language{
public static string TEST = "test";
}
Class chinese : language {
public static string TEST = "´ú¸Õ";
}
Class language {}
and now i wanna access the TEST variable, but according to which language
is being selected ..
and I expected the following and something like that...
Language myLanguage = new english();
myLanguage.TEST // output will be "test"
Language myLanguage = new chinese();
myLanguage.TEST // output will be "´ú¸Õ"
Thank you very much.
"Patrice" <http://www.chez.com/scribe/wrote in message
news:Oh****************@TK2MSFTNGP03.phx.gbl...
>You may want to explain what you are trying to do so that we can understand why not using A.ABC is not something that fit your needs and why accessing static members through an instance member would make sense. It could raise alternate approach to the problem you are trying to solve..
--- Patrice
"LamSoft" <[nospam]la*****@lamsoft.neta écrit dans le message de news: eF**************@TK2MSFTNGP06.phx.gbl...
>>But there are not only 1 static variable in Class A, .... i don't wanna make every function for each static variable
"Hans Kesting" <ne***********@spamgourmet.comwrote in message news:c0**************************@news.microsoft .com... Class B { public B() {} } > Class A : B { public static string ABC = "myABC"; public A() {} } main Program: > B myObject = new A(); > and now is it possible to access "ABC" through "myObject" without modifying the source code in Class A and Class B. > Thanks >
As it's a static variable (in type A), you can only access it through the Type A: A.ABC, not through an instance.
Type B doesn't know anything about things declared in derived types (like A), so your myObject (which is "just a B") doesn't know anything about that ABC.
*if* B declares a (virtual) method: public virtual string MyMethod() { return "nil"; } and A overrides it: public override string MyMethod() { return A.ABC; } then your myObject can still access the contents of ABC, using this MyMethod()
Hans Kesting This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Thomas Mlynarczyk |
last post by:
Hello,
Is there a way to access a static variable defined inside a function from
outside that function? Something like the following:
function foo() {
static $bar = 'stuff';
// more code
}
|
by: Lu |
last post by:
Hello, I am wondering how to protect a global variable in a header file from
external access. So I googled and found:
"The keyword 'static' has two different uses, depending on whether it is...
|
by: Mike Turco |
last post by:
This is a strange one.
I have an app that needs to know who is using the program but there's no
need for security. When the program opens a form comes up with a listbox.
The user double-clicks...
|
by: Antonio |
last post by:
I'm developing the firmware for a slave in a comunication channel. Now
there is certain information (namely the addresses of the slave and the
master) that must be changeable while the device is up...
|
by: Ray Stevens |
last post by:
How do you access properties of the main program's class from another form? There does not apear to be an instance variable that can be used.
|
by: Clint |
last post by:
Hey all -
Excuse the cross-post ... I'm not sure what the appropriate newsgroup
would be for this question.
I have a question that I'm not quite sure how to ask. For all I know, I
have the...
|
by: Roy Gourgi |
last post by:
Hi,
Is it possible to declare a variable or array in the class that is
accessible to all the methods in the class? For the example below, I would
like to make the variable lnVar1 accessible to...
|
by: javialmeida |
last post by:
Hello everybody. I've been having a look to the c++ FAQ but couldn't
get any help there.
Does anybody know if is it possible to access a static variable
declared within a function?.
Something...
|
by: MMcCarthy |
last post by:
We often get questions on this site that refer to the scope of variables and where and how they are declared. This tutorial is intended to cover the basics of variable scope in VBA for MS Access. For...
|
by: Kemmylinns12 |
last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and efficiency. While initially associated with cryptocurrencies...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
header("Location:".$urlback);
Is this the right layout the...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
|
by: Ricardo de Mila |
last post by:
Dear people, good afternoon...
I have a form in msAccess with lots of controls and a specific routine must be triggered if the mouse_down event happens in any control.
Than I need to discover what...
| |