CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 8 of 8

Threaded View

  1. #1
    Join Date
    Apr 2003
    Posts
    893

    very basic question on static reference

    PHP Code:
    class MyJNash{
    static 
    bool MyJNash var_;
    static 
    bool equillibrium=true;
    public:
    static 
    bool MyJNash &(){
    if(
    var_==equillibrium)
    return 
    var_;
    .........} 
    I know how to interpret the code but I dont understand that static function with reference used like above...
    Could you one more time please give me an explanation on it ???


    Thanks so much,

    Regards,

    FionA
    Last edited by hometown; December 13th, 2003 at 09:05 PM.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured