D语言私有成员

import std.stdio;

class Box { 
   public: 
      double length; 

      // Member functions definitions
      double getWidth() { 
         return width ; 
      } 
      void setWidth( double wid ) { 
         width = wid; 
      }

   private: 
      double width; 
}

// Main function for the program 
void main( ) { 
   Box box = new Box();

   box.length = 10.0; 
   writeln("Length of box : ", box.length);

   box.setWidth(10.0);  
   writeln("Width of box : ", box.getWidth()); 
}

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/266072.html

(0)
上一篇 2022年6月7日
下一篇 2022年6月7日

相关推荐

发表回复

登录后才能评论