Statalist The Stata Listserver


[Date Prev][Date Next][Thread Prev][Thread Next][Date index][Thread index]

Re: st: Manual class programming example


From   "Austin Nichols" <[email protected]>
To   [email protected]
Subject   Re: st: Manual class programming example
Date   Wed, 15 Mar 2006 14:40:07 -0500

Note that -help classman- specifies: "Classes are usually defined in
.class files.  For instance, we might define the class coordinate in
the file coordinate.class" and if you save the text

version 9.1
class coordinate {
double x
double y
}
program .set
args x y
.x = `x'
.y = `y'
end

in a file called coordinate.class in your path, you don't need to run
or do a do-file to type interactively

.coord = .coordinate.new
.coord.set 1 2

without seeing any error messages.  (Close Stata and start a new
instance if you are having problems with this.)

*
*   For searches and help try:
*   http://www.stata.com/support/faqs/res/findit.html
*   http://www.stata.com/support/statalist/faq
*   http://www.ats.ucla.edu/stat/stata/



© Copyright 1996–2024 StataCorp LLC   |   Terms of use   |   Privacy   |   Contact us   |   What's new   |   Site index