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 7186093
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T18:33:35+00:00 2026-05-28T18:33:35+00:00

I’ve been having a few issues trying to convert the Point program on the

  • 0

I’ve been having a few issues trying to convert the Point program on the Dart website into Java. The Dart program is displayed below:

class Point {
  num x, y;
  Point(num this.x, num this.y);
  Point scale(num factor) => new Point(x*factor, y*factor);
  num distance() => Math.sqrt(x*x + y*y);
}

void main() {
  Point a = new Point(2,3).scale(10);
  print(a.distance());
}

Here’s what I’ve come up with so far:

public class PointJava {

int x, y;

public PointJava(int x, int y){
    int a = x;
    int b = y;
}

public PointJava scale(int factor){
    PointJava j = new PointJava(factor*x, factor*y); 
    return j;
}

public double distance(){
    double result = Math.sqrt(x*x+y*y);
    return result;
}

public static void main(String[] args) {
    PointJava a = new PointJava(2, 3).scale(10);
    System.out.println(a.distance());
}

}

It outputs the double type number 0.0, but the Point program in Dart outputs 36.05551275463989.

The main issue is trying to convert these statements to Java:

Point scale(num factor) => new Point(x*factor, y*factor);
num distance() => Math.sqrt(x*x + y*y);

I’ve seen this type of syntax in C++, at least what little I’ve actually studied of it (I stopped when I was introduced to pointers and references). However, I asked someone else, and they told me these statements were actually used to define functions. I’m here to see if this person’s correct and how to understand what these statements mean in terms of Java.

Any aid will help. Thanks.

  • 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-05-28T18:33:36+00:00Added an answer on May 28, 2026 at 6:33 pm

    Your constructor should look like this:

    public PointJava(int x, int y){
        this.x = x;
        this.y = y;
    }
    

    Also, you should be using float or double instead of int.

    The this keyword refers to the current object. this.x is a class variable named x belonging to the object this. It’s not really a global. Since you are accepting a parameter named x, however, you must differentiate between the two using the this keyword. If you change what you call the passed parameter, you can avoid using the keyword (although there is no rational reason for doing so):

    public PointJava(int newX, int newY){
        x = newX;
        y = newY;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a jquery bug and I've been looking for hours now, I can't
I am trying to understand how to use SyndicationItem to display feed which is
I used javascript for loading a picture on my website depending on which small
Basically, what I'm trying to create is a page of div tags, each has
this is what i have right now Drawing an RSS feed into the php,
I have a French site that I want to parse, but am running into
I am currently running into a problem where an element is coming back from
I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
We're building an app, our first using Rails 3, and we're having to build

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.