Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8887931
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T21:55:39+00:00 2026-06-14T21:55:39+00:00

I have the following variable and getter / setter defined in my data model:

  • 0

I have the following variable and getter / setter defined in my data model:

class Actor {
    int _x;
    int get x => _x;
    set x(int value) => _x = value;
}

And there is this generic class that requires a getter / setter function pointer

class PropertyItem {
   var getterFunction;
   var setterFunction;
   PropertyItem(this.getterFunction, this.setterFunction);
}

How do i pass a reference of the getter / setter function of X to the PropertyItem class?

// Something like this
var item = new PropertyItem(x.getter, x.setter);

EDIT: Updated with a more clear question

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T21:55:41+00:00Added an answer on June 14, 2026 at 9:55 pm

    In short, you don’t.
    Getters and setters are not extractable – they are indistinguishable from just having a field (if you don’t do side-effects, of course).

    In your example, you could just do:

    class Actor {
      int x;
    } 
    

    and get exactly the same effect.

    What you want is, for some Actor “actor”, to make the functions yourself:

    var item = new PropertyItem(() => actor.x, (v) { actor.x = v; });
    

    This proposal about generalized tear offs is approved and will probably implemented soon and allows to closurize getters and setters like:

    var item = new PropertyItem(actor#x, actor#x=);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following PowerShell loop: Set-Variable -Name YELLOW -Option ReadOnly -Value 0 Set-Variable
Lets suppose i have a field with short defined getter setter like following: public
Let's say I have the following class: class MyClass { private: int Data; public:
I have the following code to set a userId variable: (userId set in prior
I have the following variable being dynamically set by user generated content: $variable =
I have the following code: class MyClass { def myMethod() { variable = I
I have a set of classes I derive from a base class as following
I have the following variable: pageID = 7 I'd like to increment this number
I have the following variable: $argument = 'blue widget'; Which I pass in the
I have the following variable that accepts a file name: var xtr = new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.