Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

116
Views
How to add properties functions to objects from another class in Java?

In Javascript we can define an object like this ๐Ÿ‘‡

let obj={
    property1:67,
    func1: function (){
        //Some code
    }
}

Now if we want add a new property to obj I can just add a new property like this

obj.property2=733; //some value or function

Now I want to do the same thing in Java also.

I have a class Test ๐Ÿ‘‡

public class Test{
    int property1=67;
    public void func1(){
        //Some code
    }
}

Now is it possible to do like the same thing like statement #2 in Java also?

Edit: From the answers I got to know that we can use a Map for properties. Now I want to know for methods. Thanks

about 4 years ago ยท Juan Pablo Isaza
1 answers
Answer question

0

So I did a research and as I can see this is not simple.

In java you can not do that, actually, you can if you provide your own custom class loading, which is really a bad idea because then even if you change the class you want you must reload all classes that interact with this class.

Check this article to understand more about class loaders.

Of course, there are some other ways as:

  • ASM an all-purpose Java bytecode manipulation and analysis framework.

  • Javassist a library for editing bytecodes in Java

  • AspectJ aspect-oriented extension to the Java, mostly used to clean modularization of crosscutting concerns

about 4 years ago ยท Juan Pablo Isaza Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
ยฉ 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!