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

  • Home
  • SEARCH
  • 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 117043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T03:16:25+00:00 2026-05-11T03:16:25+00:00

I have a data object with three fields, A, B and C. The problem

  • 0

I have a data object with three fields, A, B and C. The problem is that the user can set any of them because:

A * B = C

So if a user starts off by setting A & B, C will be calculated. but then if a user set C, A gets recalculated, so there is an implicit anchoring that is happening based off the last field that the user set.

i want to avoid a solution with a lot of flag member variables. Any best practices on how i can code this class up without having a lot of stuff like this below

public class Object {      private double _A;      private double _B;      private double _C;       private bool _enteredA;      private bool _enteredB;      private bool _enteredC;  public double A { get     {      if (_enteredC)      {           return _C / _B;      }      else      {         return _A;      }   } } 

should the logic of setting A, B, and C always be on the ‘get’ or the ‘set’.

Is there any cleaner way to doing this?

  • 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. 2026-05-11T03:16:26+00:00Added an answer on May 11, 2026 at 3:16 am

    So your rules are:

    A = C / B B = C / A C = A * B 

    What you’d need to do is remember the last two fields that the user entered, and from that, calculate the third. Therefore if they entered A and then B, then you calculate C. If they then change C, then recalculate A, and so on.

    If you want to code it without using boolean flags, there’s a couple of different ways you could do that. A queue, or just a simple array/map would work:

    editOrder = {A : 0, B : 0, C : 0 }  // (or just use 0, 1, 2) editCount = 0;  every time any field is edited :     editCount = editCount + 1     editOrder[field] = editCount     if two fields have an editOrder > 0         recalculate the field with the lowest editOrder 

    Example usage:

    Field changed    editOrder        recalculate field     A            1,0,0            -     A            2,0,0            -     B            2,3,0            C     C            2,3,4            A     C            2,3,5            A     B            2,6,5            A     A            7,6,5            C 
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 155k
  • Answers 155k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Hmm, that is odd. At least on OS X and… May 12, 2026 at 10:39 am
  • Editorial Team
    Editorial Team added an answer Actually, GTK is not a web toolkit (if we're talking… May 12, 2026 at 10:39 am
  • Editorial Team
    Editorial Team added an answer Can't you use properties and override setter for the field?… May 12, 2026 at 10:39 am

Related Questions

I have three denormalized tables that I have to take at face value (data
Scheme uses a single namespace for all variables, regardless of whether they are bound
I've written an entire app pretty successfully in Django but I have this nagging
I want to create a collection of classes that behave like math vectors, so

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.