Get variables declared in class

hey.
I have a question regarding classes ( new to them).:shh:
I have a class that extends an object, and have declared some variables in the class code:


package  {
	
	public class myclass extends Object {
		public var _test = "yey";
		public function myclass() {
			// constructor code
		}

	}
}

How could i get the default value of the var _test?
If i try to trace directly with the class as the pointer, i get syntax error:


trace(myclass._test);

Any ideas? Thanks!:genius: