I've see this done before in languages based on mono, but I'm just curious if this would be possible in c++. If I had the following class

  class test {
    public:
    int foo;
    int myfunction();
  };

when I try and access the foo variable, is their any way I can make it so it calls myfunction and returns its value?

test t;
cout << t.foo;//instead of printing the value of foo, print the return value of myfunction

Thanks in advance! I googled this but wasn't able to find anything.

Or, could it be possible to call a function with no arguments without the parenthesis?

Wow! Thanks for all the input guys. The main reason I wanted no parenthesis is that I'm trying to make this API as similar to that of an old, non-c++ API. Not having two parenthesis after a function in this class might make maintenance a bit harder, but it will saves me hours of answering why Vector2.normalized has to have () after it.

link|improve this question

57% accept rate
Why would you want to do that? – dcp Jun 29 '11 at 16:34
It would make working with the Vector class I'm making a bit easier. – Precursor Jun 29 '11 at 16:35
1  
No and you shouldn't. – Viktor Sehr Jun 29 '11 at 16:35
1  
How would it make it "easier"? Besides not having to type ()? – trutheality Jun 29 '11 at 16:36
1  
@Precursor - Even if you could do it, I think it would be bad from a maintenance perspective. Think about the next guy that comes along that has to maintain your code. How intuitive do you think something like what you're proposing would be? – dcp Jun 29 '11 at 16:38
show 3 more comments
feedback

5 Answers

up vote -1 down vote accepted

One possible workaround, which is a bit evil, would be to use a macro.

#include <stdio.h>

#define FOO myfunction()

class test {
  private:
    int foo;
  public:    
    int myfunction() {
      return 42;
    }
};

int main() {
  test t;
  printf("%d\n",t.FOO);
  return 0;
}

As I alluded to in the comments to your OP though, I think such tricks are terrible from a maintenance perspective, and should be avoided.

link|improve this answer
Let's hope FOO is not already defined. – jweyrich Jun 29 '11 at 16:52
Why do you use C stdio ? – Ubiquité Jun 29 '11 at 16:52
I sthink he used stdio for printf – Precursor Jun 29 '11 at 16:55
@Precursor: that was his point. With C++, one should stick to <cstdio> or yet better, <iostream>. – jweyrich Jun 29 '11 at 16:57
1  
-1 one should not suggest such evil even in jest. somebody will take it seriously, as apparently happened here. btw., someone downvoted this before me. i'm guessing for the same reason. those macro names are going to seriously ¤¤¤¤ up other code. – Cheers and hth. - Alf Jun 29 '11 at 17:25
show 6 more comments
feedback

Yes, make foo private and only accessible with a public accessor method that can do whatever you want. You can't do it directly the way you asked in C++.

EDIT: If you want the behavior options you're describing, C++ may not be the language for this project.

Also I should note that the standard library already has a nicely optimized and debugged vector that should be used in favor of rolling your own (unless it's just an exercise).

EDIT2: Also if you're trying to do this to save on typing, remember that to save two seconds of typing now you cost yourself or the future maintainer four hours of head-scratching debugging trying to figure out why it doesn't work the way it appears that it should. You write code once and read it many times.

link|improve this answer
2  
So by "yes", you mean "no". – trutheality Jun 29 '11 at 16:39
I described the C++ way to mostly do what was asked. – Mark B Jun 29 '11 at 16:41
1  
I'm not challenging that, but the OP is more concerned about not typing the parentheses. – trutheality Jun 29 '11 at 16:45
feedback

In general it's not a good idea to do what you request, known as properties in other languages.

However, I've used it to debug spaghetti code.

So, it's a tool that belongs in the toolbox, but it's not a tool you should use frequently.

Off the cuff (code not contaminated by dirty compiler's fingers):

class Test
{
private:
    class IntProperty
    {
    private:
        int value_;

    public:
        IntProperty( int v = 0 ): value_( v ) {}

        void setValue( int v ) { value_ = v; }
        int value() const { return value_; }

        IntProperty& operator=( int x )
        {
            setValue( x );  return *this;
        }

        operator int () const { return value(); }
    };

public:
    IntProperty foo;
};

One reason that this is generally ungood is that if you pass foo to some templated code, such as standard stream output, the conversion to int will not be invoked. Such places require explicit conversion calls.

Another reason that it's generally ungood is that if the setter or getter needs access to the rest of the object, then this involves a stored "outer object" pointer, which equates to some inefficiency, both memory and time.

So, instead of this monstrosity, consider simply making that datum private, and provide a getter function.

Cheers & hth.,

link|improve this answer
feedback

You can make foo a macro:

#define foo myfunction()
class test{
public: 
  int myfunction();
};

But it is a sad method.

link|improve this answer
Won't work if he has private variable named foo already in the class. – dcp Jun 29 '11 at 16:44
Yes, that's why I removed it. – Ubiquité Jun 29 '11 at 16:47
feedback

There is no way to do that in C++. If you're planning to access x,y,z members on your Vector class, you could write an operator[] which receives the index by argument, invokes the desired method/function, and returns the computed value for the requested member (according to the index passed). Example:

int& operator[](unsigned i) {
    // Be sure to write proper bounds checking here.
    doSomething(data[i]);
    return data[i];
}
link|improve this answer
well it can be done. but i've only used it to debug existing spaghetti code. other than such special applications it's imho generally not a good idea. – Cheers and hth. - Alf Jun 29 '11 at 16:41
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.