Private is a way of encapsulation in object-oriented programming.
-6
votes
1answer
140 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 ...
0
votes
3answers
88 views
declaring variables in classes using PHP
Fairly new to classes in PHP, so bear with me.
class processRoutes
{
//Next line works
private $doc = "works as as string";
//Next line does not work, "Parse error: ...
-1
votes
4answers
169 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 ...
3
votes
5answers
602 views
What is the difference between Protected and Private? [duplicate]
Possible Duplicate:
Private and Protected Members : C++
I don't understand the difference between protected and private members or methods, as I assumed both will hide the member or the ...
0
votes
3answers
191 views
How to Set a MYSQL Variable Value to 1 when text is clicked in php?
First off I know very little about php and am still learning so please go easy on me with your answers. basically i'm working on a project that functions like a social network site, users are able to ...
0
votes
2answers
151 views
Accessing class variables from private actionPerformed method
In the code below, I don't know why the values of variables uNomba and list are NULL when accessed from jButton1ActionPerformed method. I would appreciate your help, on how I can successfully execute ...
0
votes
3answers
75 views
Scope issue : how to see (not access neither modify !) a private attribute from outside its class?
I'd like to know if there's any way to see (and not access neither modify) a private member from outside its class ?
template <typename type_>
class OBJ1
{
//methods
};
class OBJ2
{
...
2
votes
5answers
226 views
How to grant access to a private method [duplicate]
Possible Duplicate:
What are access specifiers? Should I inherit with private, protected or public?
I am looking for some code or design pattern to grant access to a private method from ...
2
votes
7answers
138 views
Is there an advantage to using a static method which returns a new instance via a private constructor?
A pattern I occasionally see is like this:
public class JustAnotherClass
{
private JustAnotherClass()
{
// do something
}
static JustAnotherClass GetNewClass()
{
...
0
votes
3answers
637 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
1answer
159 views
Ajax call to private folder / php file from main site domain (public_html)
I am in the process of migrating my site to a server from its localhost location. In my server root, I want to have a public_html folder that maps to the main domain, and a private folder that ...
0
votes
3answers
71 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 ...
3
votes
2answers
100 views
Is there a way to share 'struct' among source files while not exposing it in a header file?
Lets say I have a header file foo.h which declares a struct variable
#include <stdio.h>
typedef struct foo_struct foo_s;
foo_s foo_function(int a);
foo_s bar_function(int b);
and a source ...
0
votes
2answers
128 views
Accessing a private class from another file
I would like to keep my .cs files separate, mainly because I think it looks neater that way. In one .cs file I have the Form.cs. I'm working in the .NET framework 2.0. So I have a different myClass.cs ...
0
votes
2answers
268 views
ROR — NoMethodError in Carts#show — Private Method error
I am currently following the Agile Web Development book (Rails 3) and have been stuck with a Private Method error. After hours of research I have not been able to find a solution.
The following is ...
2
votes
0answers
63 views
Google is searching AWS Elasticbeans site( mysite.elasticbeanstalk.com) but not my site (mysite.com). What to do?
I was testing my site on AWS. And it is like mysitetest.elasticbeanstalk.com. But my original site is mysite.com. Now whenever i search for mysite google shows mysitetest.elasticbeanstalk.com links ...
3
votes
1answer
103 views
Modifying private class variables within a class method?
This is probably a really basic error I'm making, but I'm quite new to c++ so please don't judge!
Basically, I've got two classes as follows:
class A{
private:
vector< vector<int> ...
1
vote
1answer
142 views
Python “private” name mangling and instance vs class attributes
I was writing a decorator that needs to access private variables and found this discrepancy. Can anyone explain this?
(Python 2.5)
Naming mangling works as expected for attributes defined in the ...
1
vote
0answers
36 views
Template Class Friend Function of Another Template Class
I have a tree comprised of a pair of template classes, one of which needs access to private members of the other, preferably restricted to only those member functions which actually need access. This ...
3
votes
5answers
320 views
public or private, does it really matter with Android variables
inside of a single activity, when defining components to be used only within that activity, what's the real difference between the following definitions:
Button btnPower = null;
//or
private Button ...
0
votes
0answers
102 views
Sharepoint Discussion Board replying in private
I have:
1 sharepoint Discussion Board (read items user created only, enabled)
10 users with contribute rights
1 user with full control rights.
1 of the ten users creates a discussion. None of the ...
0
votes
2answers
57 views
Can someone access private directories on rooted phones?
Can someone access the database files and/or other files of my app stores in the system's private directories?
I think this can be done on rooted phones, but I am not sure.
I am trying to figure ...
2
votes
0answers
142 views
netbeans 7.2 team server cloud Private project
A Simple Question
Does netbeans clouds and team servers keep project sources private?
I am looking for a way to make a project in netbeans which only i can access and edit from anywhere where i can ...
0
votes
3answers
97 views
How do I retrieve an item from a PHP private Object Array?
I've searched everywhere, IPB forums, google, everywhere.
I couldn't find any documentation from IPB/IP.Nexus forums because they dont have any, it's encrypted with Zend.
What I was trying to do was ...
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 ...
-6
votes
4answers
357 views
C# Make everything following public / private like in C++? [closed]
I recently started learning C#, but I have some background in C++.
I was wondering how I would do something like
class employee
{
public:
....
... methods ...
....
private:
...
1
vote
0answers
82 views
Private app API using 'curl'
I am trying to use curl and private app API and have successed to access to my shop but got an error message to modify current product using curl in PHP. Below is the code I used
(I put xml file as ...
0
votes
0answers
135 views
Screenshot won't generate GSEvent
I have a trouble - when I tried to press and hold some button (with embossed down effect) and then take screen shot (by clicking home and lock button in same time) the button don't pressed up, and is ...
0
votes
0answers
75 views
iframe a private server in a public server
We are searching for a solution for the following setup.
We have a public website. Customers can login on a special page and then they see different info like account status, open trouble tickets and ...
4
votes
3answers
466 views
C++: Private virtual functions vs. pure virtual functions [duplicate]
Possible Duplicate:
Private virtual method in C++
If I understood correctly from this post (http://stackoverflow.com/questions/2170688/private-virtual-method-in-c), making a virtual ...
2
votes
1answer
96 views
Git: How to prevent the local machine username from being posted?
I am using OSX.
I noticed that when I commit changes to my public project using my local machine using git, the user name on the commit (in the website - in the project page under "commits") is the ...
1
vote
3answers
144 views
Make picture available only for my Android application
I have an application which has loads of pictures. The total picture is saved in an SD card due to large number of picture. The main problem is that the pictures are available in gallery. I want a way ...
0
votes
0answers
19 views
How to create a network drive that all documents are stored
How to create a network drive where each use has a space, in his space he keeps his documents and not locally on hid local dives.
On each login he can see his private space in the network.
Thanks
0
votes
3answers
110 views
private method in 3rd party iOS library
I'd like to use a popover view for iPhone.
I found a 3rd party library and author says some of its method is utilizing a private method.(which will cause problem when submitting to app store)
But I ...
0
votes
1answer
123 views
.cer and private key
I imported a .cer that was given to me by a vendor into the local machine (Trusted root to be specific). I was told the private key is inside. I opened up the cert using some .Net code and it is ...
10
votes
1answer
256 views
Why is it legal to inappropriately access privates in an explicit instantiation?
Why on earth would this be allowed:
//////////////////////////////////////////////////////////////////////////
//////////////////////////////////////////////////////////////////////////
...
1
vote
3answers
69 views
How can private inheritance from a visitor interface allow a visitable object to access visit private visit implementations?
The following code shows a class which privately inherits from an interface having its private functions accessed without granting the calling object friendship. I am baffled by this but can't really ...
1
vote
0answers
114 views
Using pydoc for non-public/private classes
When I use _ as a prefix for a class name (see also http://docs.python.org/tutorial/classes.html#private-variables-and-class-local-references and "Private" (implementation) class in Python), ...
2
votes
1answer
1k views
C# RSA Decrypt Using Private Key
I've been searching but I can't seem to find a simple way of decrypting using RSA.
I have generated a public and private key, they are stored in two separate files and are in the XML format. I have ...
1
vote
3answers
181 views
Is it possible to create a private application available only for specific users ?
Basically, we want to create an application for facebook.. where users that have an account on our system are able to install our facebook application. We do not want this application to all facebook ...
2
votes
1answer
345 views
Understanding child pages hierarchy in Liferay
I will sum the logic through 4 easy questions:
Can/should private pages have public child pages? (it seems private pages are using other site or context for any group/user)
Can/should public pages ...
4
votes
4answers
138 views
When using an enum in a class would it be public and why?
I am using an enum for a class I am working on and I am using Google to look for examples to make sure I am using the enum correctly. I went to several sites including the MSDN site and enums are ...
0
votes
1answer
509 views
Retrieving raw private key from openssl_pkey_get_private()
I've been spending quite some time trying to figure out how exactly to retrieve the raw private key data from openssl_pkey_get_private() using a passphrase. I feel like there's a simple thing I am ...
2
votes
2answers
88 views
ASP.NET MVC3: Private resources
Is there any way to make resources private.
I have a video content site. They upload. Files get stored on the web-server.
Files get embedded back onto the site.
Now if I view the "source code" in ...
0
votes
1answer
101 views
How to get private list in twitter with iOS5?
The following code is not returning private lists:
NSURL* url=[NSURL URLWithString:@"http://api.twitter.com/1/noppefoxwolf/lists.json"];
NSDictionary* params=[NSDictionary ...
0
votes
0answers
81 views
Can you inherit local variables?
I was wondering if the following code is executed, does it inherit local variables from the NewDragDrop function? Does it matter if the NewDragDrop() is the constructor of another class?
function ...
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
243 views
Calling a private method xxx using self.xxx() from within another private method resulting in error “private method `xxx' called”
I'm trying to get a good Ruby coding style. To prevent accidently calling a local variable with the same name, I'm always using self. where appropriate. But now I stumbled over this:
class MyClass ...
0
votes
3answers
124 views
How do I make methods only available to properties in Obj-C?
I'm still new to Objective-C and I recently learned how to make properties, so far so good, but one thing that bothers me is that the setter and getter methods are still publicly available even after ...
0
votes
0answers
40 views
Right of existence of both private and protected in Ruby [duplicate]
Possible Duplicate:
Why does Ruby have both private and protected methods?
As a Java and Smalltalk programmer I stumbled upon Rubys private and protected access modifiers, and quite frankly ...

