2
votes
4answers
102 views

Dosen't Reflection API break the very purpose of Data encapsulation?

Very recently I came across the Reflection API and to my surprise we can access and even alter the private variables.I tried the following code import java.lang.reflect.Field; public class ...
2
votes
3answers
61 views

Why is it allowed to access a private field of another object?

Recently, I observed an unexpected behavior of accessing priavte fields in Java. Consider the following example, which illustrates the behavior: public class A { private int i; <-- private ...
0
votes
4answers
45 views

Passing a Private String in Java

I need to get the string randomWord to return through getWord() private static void setUpDictionary() throws IOException { Scanner fileScan; String[] words = new String[25]; ...
0
votes
3answers
72 views

Java code no longer compiles after factoring out exception throwing to private final function

Have a look at this simple Java code: final class A { public static void main(String[] args) { int x = 3; boolean b; switch(x) { case 1: b = ...
2
votes
5answers
55 views

confused over use of private and public

I am getting an error in my code in the line; private LinkedList stock. The error states i have an illegal start of expression, presumably being private? How can i change this to get rid of the error? ...
0
votes
1answer
68 views

Java Reflection private method with parameters best approach?

i am trying to call a private method using java reflection i developed a small method to call the others methods iterating over all methods and comparing by name and by parameters type i have invoke 4 ...
-2
votes
4answers
74 views

why we are declaring variables as private in java [duplicate]

Normally in java bean classes we are declaring variables as private. Anyhow we are declaring setter and getter methods as public. Then we are able to get and set the value of property. So what ...
0
votes
2answers
61 views

Can you access a private variable of an instance if it is in the same class? (copyOf)

As an example, public class SwapNumbers { private int aNumber = 0; /////////////////////////////////// public SwapNumbers(){ } public void changeNumber(int changed){ aNumber = ...
0
votes
1answer
41 views

Access non-public (java-native) classes from JDK (7)

I want to use the method MethodHandleNatives.getTargetMethod(MethodHandle)AccessibleObject. The class MethodHandleNatives is not public. So does anybody know how I can do that? I know that its ...
2
votes
4answers
79 views

Java - understanding cloning

This code was presented in my Computer Science class today (accompanying several questions irrelevant to this post). This is not homework, just some issues I personally found with the code; public ...
1
vote
5answers
82 views

What about public method returns private class instance?

i am trying to test the following situation: There is a main. (city.Main) There is a package. (package castle) Within the package, there is a public class (castle.Guard), and a package-private class ...
-3
votes
4answers
63 views

Do not want to set private to default in Java [closed]

I have this in one class: if (people.count < 10) return false; But count is undermarked with red saying Change the visibility of count to default count is in another class as private. But ...
1
vote
2answers
74 views

Java - object of a private inner class being as an argument to an outer class' constructor

public class Person { private class Date { public Date(int month, int day, int year) { ... } } private String name; private Date birthDate; ...
1
vote
3answers
37 views

Why the private property of another string can be referenced directly in the implementation of java String constructor

I have reviewed Java.lang.String implementation.The constructor make me confused. why result.value,result.count,result.offset can be used directly. As the property of the three are just private!!! ...
6
votes
8answers
226 views

private String or public static String?

At my internship one of my colleagues gave me a hint. I want to know if this is good practice. What I was doing was creating classes that are used only for the values they contain and don't have any ...
2
votes
3answers
104 views

JUnit best practise - testing methods, where the result cannot be verified with public methods

I am writing a Socket Application in Java, where a server is taking messages from an eventsource and sending notifications to connected users, depending on the eventtype. Now I am about to write some ...
-2
votes
4answers
61 views

Need understanding for public and private

I have pasted the code, now my query is that in 1st class named "accesssp" I have added object and then written SOP then why cant I have output as value of B ?? b's access is private but I am fetching ...
0
votes
4answers
97 views

How to force use of a setter method without using private ? (public for read, private for write) [duplicate]

I have a Circle class type of object for which I have a member 'r' to store the radius. Now because I use these objects a lot, I don't want to make the radius private because other classes would to ...
2
votes
1answer
57 views

How to change a private field in a parent class

I have using the Vaadin framework and want to override some behavior. Problem is that all setters for a field have side effects that I don't want to invoke. For this reason I want to set the ...
-2
votes
1answer
113 views

Private ArrayList shared by all members in class

When I use the setAssetWeight method to set values of objects stored in the ArrayList, every instance of the object has the values in their ArrayLists changed to the value set with setAssetWeight. ...
1
vote
8answers
138 views

Public vs Private [duplicate]

Following are Java code I did as a practice for a class. I have a class named SavingsAccount. It has balance and interest variables. However, I set them to public, but if I want to treat the accounts ...
-1
votes
2answers
192 views

Access the variable declared inside the private class in java

This is my code. private void btnloginActionPerformed(java.awt.event.ActionEvent evt) { String username = ""; String sql = "select * from userinfo ...
2
votes
2answers
84 views

Java - define private fields using only one private keyword

Is there a way for me to define private fields using only one private keyword? What I'm really asking is: is there something that I can do that looks like this: private { int x; int y; ...
0
votes
4answers
89 views

How to access the variable decleared inside of private class from other classes in java?

I have login page with 2 text field and a login button. when login button is clicked, the username and password is retrieved from txtfield and check with username and password in database. if password ...
-1
votes
5answers
156 views

Why declare variables private in a class? [closed]

Folks I'll start by apologising as I'm sure this has been answered elsewhere - I just can't find an answer that explains it in a way I understand! I'm doing an MSc conversion course and there are some ...
0
votes
6answers
1k views

Private class declaration [duplicate]

Possible Duplicate: Java: Why can we define a top level class as private? Why can't we declare a private outer class? If we can have inner private class then why can't we have outer private ...
0
votes
5answers
74 views

Private methods in Inheritance

Here's an interesting code snippet: public class Superclass { public static void main (String[] args){ Superclass obj = new Subclass(); obj.doSomething(); #prints "from ...
1
vote
6answers
282 views

Are the private members of superClass inherited by a subClass… Java?

I have gone through this: Does subclasses inherit private fields? But I'm still confused... I'm talking about inheriting only and not accessing. I know that they aren't visible out side class. But ...
16
votes
4answers
316 views

Private instance member access from anonymous static instance

Consider the following code: enum E { A { public int get() { return i; } }, B { public int get() { return this.i; } }, C { public int get() { return super.i; } }, D { public int get() ...
2
votes
2answers
878 views

Instantiate private inner class with java reflection

Is it possible to instantiate a private inner class from another class using java reflection. For example if i took this code public class Main{ public static void main(String[] args){} } class ...
-3
votes
7answers
605 views

Can java private data members be accessed from outside the class? [duplicate]

Possible Duplicate: Is it possible in Java to access private fields via reflection Is there any way so that we can call the private data members of a class in java, can be accessed outside ...
0
votes
2answers
61 views

Is there any way to have readonly feature without using get() in get() set() model?

Having the get set model: public class exampleclass { private Something something; public Something getSomething() { return something; } public void ...
1
vote
2answers
110 views

Inheritance and private instance variables

I'm having trouble figuring out how to access a private instance variable of the super class. I'm writing an equals method in the Dog class that compares to see if the name and breeds are the same, ...
2
votes
2answers
87 views

I want to make the printer print until the balance in the account is not enough for the printing job

The problem is that I keep getting the balance to be minus, it executes the part where the money needs to be taken out, but the 'if' statement that I've put in place should prevent that. I'm new to ...
1
vote
4answers
132 views

Accessing public methods of a Private Inner Class, from outside the Enclosing class

I have the following code class Agent.java : public class Agent { Helper helper ; private class SpecificBehaviour extends Behaviour{ private Apple a; public ...
5
votes
5answers
124 views

Would it be bad practice to have public Java class members in this case?

I am writing a communication software that will talk to lab processes in the control department in my uni. The processes communicate over serial port and there will be a fair bit of bit ...
4
votes
3answers
545 views

Passing objects from one private method to another

I have been programming for a little while now, and I have a question on the use of public methods. I am working on a vending machine program, and I have a private method setUpMachine() to initialize ...
-6
votes
1answer
137 views

Accesing Private Methods in java? [closed]

how to implement such a functionality to access private members ? Java checks access permissions during compilation only. Are you surprised? I was surprised very much to find out this fact. So you ...
-1
votes
4answers
168 views

In Java, Whether the subclass can get the private fields and methods from its superclass? [duplicate]

Possible Duplicate: Are private fields inherited by the subclass? It's no doubt that the subclass can't access the private fields directly. But if the private fields exists? Actually i can ...
0
votes
3answers
624 views

Using Private Static Boolean

I am a brand new student of java and I have been searching google and my textbook to figure out what exactly it means to use a private static boolean, though none of it is really making any sense so I ...
0
votes
3answers
70 views

Whether to use private modifier for all fields in a standalone swing applicaton?

I have a standalone Swing application with a main class which I will call MainClass. The only access to this MainClass is from the main(String args[]) method of this class. In other words, this class ...
1
vote
2answers
38 views

Doing an API, constructor for system private use only and another official, javadoc'ed and public to use. Advise on fix / pattern approach

I guess this is a bad pattern, whats the best approach to fix it? I mean I would like everybody using a constructor with 2 arguments,but I need to leave default constructor because its implementing a ...
2
votes
2answers
90 views

Private variables and inherited constructors

I am new to Java, so i might have missed something here - i looked around in other threads, but i didn't find anything that quite resemble my question. i know that private variables are not inherited ...
-3
votes
2answers
215 views

private constructor in abstract class scenario

Is there is any feasible solution to have private constructor in abstract class..please advise public abstract class BaseClass { private String member; private BaseClass(String member) { ...
1
vote
1answer
229 views

Private access? Java [closed]

I have a private access error to do with the variable "totalFloat". However I have been referencing and using methods from the same class without this problem. Is there a general way to get around a ...
2
votes
5answers
801 views

Private constructor in abstract class [closed]

In Java what is the purpose of using private constructor in abstract class? In a review I got this question, and I am curious, what situation need to be to use constructor in such way? I think it ...
5
votes
2answers
2k views

How to access private methods and private data members via Reflection?

I know that we can access private constructor via Reflection as @Sanjay T. Sharma mentioned in his answer of my question: Does “instanceof Void” always return false? However, @duffymo said: you ...
2
votes
3answers
60 views

Java method access

I have a question about public and private classes in Java. For example, if you have a public method inside of a private class, can the public method by accessed by other public/private classes? ...
4
votes
3answers
617 views

How to call a private method from outside a java class

I have a Dummy class that has a private method called sayHello. I want to call sayHello from outside Dummy. I think it should be possible with reflection but I get an IllegalAccessException. Any ...
0
votes
4answers
2k views

Advantage of set and get methods vs public variable [duplicate]

Possible Duplicate: Why use getters and setters? Is there any advantage to making methods to access private variables in your class instead of making the variable public? For example is ...

1 2 3