Private is a way of encapsulation in object-oriented programming.
0
votes
2answers
97 views
PHP - Visibility of __construct
If i have :
abstract class AbstractSingleton
{
protected static $instance;
public static function & getInstance()
{
if(null === static::$instance) static::$instance = new ...
1
vote
2answers
414 views
Difference between “public void onDestroy()” and “protected void onDestroy()”?
Here is a part of my code:
package com.admobsdk_dfp_handler;
import com.google.ads.*;
import com.google.ads.doubleclick.*;
import android.os.Bundle;
import android.os.Handler;
import ...
1
vote
3answers
119 views
About private member of Class in C++
I have a question about private member of Class in C++:
I have a class defined like this:
class Hello
{
private:
int a[2][2] = {{1,1},{2,2}};
public:
int* getA();
} hello;
a is a ...
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 ...
0
votes
1answer
146 views
friend function of the class can't access to its private vector;
I have the following declaration:
friend ostream& operator<<(ostream&,const List&);
and I have the following definition:
ostream& operator<<(ostream& out,const ...
1
vote
1answer
468 views
C++ friend function not working, private within this context error
I've been doing an exercise for my programming course and the particular one I'm on now is about friend functions/methods/classes. The problem I'm having is that my friend function doesn't seem to be ...
1
vote
4answers
129 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 ...
1
vote
3answers
73 views
Creating forms that only certain users can see.
I am relatively new to ruby on rails, however this isn't my first project. I am trying create an event management website where the organiser can log in and populate a form with users information and ...
3
votes
7answers
265 views
C++: accessing private fields and function from main
I've programmed only in Java in my career and started using C++ since 10 days, so this question may seem strange to many of you.
I have defined the structure of a class in a header file:
...
1
vote
1answer
293 views
C2248: Cannot access private member declared in class
We are trying to compile an application using VS2005 and we are receiving the following error message:
error C2248: 'palo::bytecode_generator::WM_OPCODES' : cannot access private enum declared in ...
2
votes
1answer
42 views
changing external_uri for private cloud setup
I am trying to setup a local/private cloud with cloudfoundry, and by that I need a local domain set as my target url (and not .vcap / .cloudfoundry.com).
I read somewhere here on the forum that by ...
2
votes
0answers
64 views
JavaScript working with constructor
I have the following script included on my page (myScript.js).
function constr(args) {
var param1 = args;
function drawTable(element, tableRows) {
// code that creates ...
1
vote
1answer
119 views
Is there a way to invalidate NSBundle localization cache, withour restarting application? [iOS]
Let's assume that we can change in runtime Localizable.strings, that is placed in NSBundle
At the current moment, even if we change it's contents, NSLocalizedString would return old(cached) values.
...
1
vote
0answers
76 views
Using Youtube API to move videos to another media host
Can I make a PHP script, using Youtube API or any other legal way, to directly copy mp4 files from my own youtube channel to Amazon S3 or other media host?
I need this because my client wants me to ...
0
votes
4answers
125 views
C++ public and private datatypes
I am currently working on Chapter 7 in the book "Starting Out With C++ Early Objects" by the Pearson printing company.
I am unable to understand the function of the variable 'r' in this class ...
2
votes
1answer
57 views
Can I use facebook javascript SDK on a embedded macheine with Private IP?
I have some problems with Facebook Javascript SDK.
I want to write some html and javascript codes to upload photos to FB,
and these codes are implemented on my machine, this machine is a embedded ...
0
votes
1answer
71 views
How to make my API private but usable by mobile application?
Here is my requirements:
Usable by any mobile application I'm developing
I'm developing the mobile application, therefore I can implement any securing strategies.
Cacheable using classical HTTP ...
2
votes
1answer
211 views
private vs. public typedef [closed]
I have the following code:
//MyClass.h
class MyClass {
typedef std::map<std::string, int> OpMap;
static const OpMap::value_type opMap[OP_COUNT];
public:
//methods
};
...
2
votes
2answers
133 views
SEO: secure pages and rel=nofollow
Should one apply rel="nofollow" attribute to site links that are bound for secure/login required pages?
We have a URI date based link structure where the previous year's news content is free, while ...
14
votes
2answers
349 views
Why are `private val` and `private final val` different?
I used to think that private val and private final val are same, until I saw section 4.1 in Scala Reference:
A constant value definition is of the form
final val x = e
where e is a constant ...
0
votes
2answers
97 views
Get names of private methods of AppKit classes
I have been struggling with this for some time now.
There have been many times I wanted to change something minor in a control, but I had to redraw the entire thing just to adjust it.
Like a ...
-1
votes
1answer
967 views
GNU/Linux gpg how to encrypt using private key [closed]
Edit: Sorry for the confusion. Actually I want to know whether it is possible to encrypt using private key. (This automatically means signing too.)
I wish to do this in a C program by running a ...
3
votes
1answer
38 views
Query over the design of a multi-dimensional map of a structure that has its data hidden from some source code files in C
I'm developing a 2D tile map game where a tile is represented by a structure in an 'object' source code file. I want to represent the world map in a separate source doe code file by using a ...
1
vote
3answers
72 views
Setting private properties of a class using its public methods, c++
Something like this:
class someclass
{
public:
someclass();
~someclass();
long Set(int x, int y);
private:
int _x;
int _y;
};
long Set(int x, int y)
{
_x = x;
...
2
votes
2answers
402 views
{AS3} addChild() in a Class does not work
so I have a class:
package
{
public final class Main extends Sprite
{
private var TextHolder:Sprite = new Sprite();
public function Main():void
{
...
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 ...
2
votes
3answers
145 views
Not allowing people to post private youtube video links
I have a website, and on it you can post a YouTube video link, and when you do, it gets the ID from it (the 11 characters) and puts it in the database. Then, you can view the video on a page and it ...
1
vote
3answers
212 views
declare private structure in C
Is it possible to declare a structure type that is only visible in the .c file which uses the structure? I know that by putting static in front of a external data object, you change the linkage of the ...
0
votes
0answers
98 views
How do I import an external file and set it to private data members in C++? [closed]
I am to use private data members in my header file and in my .cpp file, I am to import data from an external file. I need to assign each line of the external file to be one of the private data ...
0
votes
1answer
53 views
Is it bad to set up singletons such that all methods are static methods?
I frequently setup singleton classes that are intended to be used by other programmers and I find that I'm not sure if there is a preferred way to setup access to methods in those classes. The two ...
0
votes
0answers
28 views
Easy to setup, non computationally expensive streaming of 3D app over VPN?
Could someone suggest some solution that can transmit video/audio from a 3D application (i.e., DirectX video game) to a remote friend (possibly over VPN) in real-time?
Shall:
-Be easy to setup, ...
1
vote
7answers
229 views
PHP: can an empty `index.html` 'hide' files in that directory (if the files names are not known)?
Could access to files like df9dfglh_56_ghf.mp3 in /www/pub/ prevented with an empty index.html file? (but giving access via index.php with login to a database that then links to that file name)?
...
2
votes
0answers
97 views
How to zoom the screen programmatically with private coregraphic methods (how to find function arguments)
as you may know Mac OS X has a pretty nice screen zooming functionality built in, which can be enabled in System Preferences => Universal Access.
Now I'm trying to trigger this screen zooming ...
0
votes
1answer
28 views
Effects with multi core processors
I am really confused with the concept of cloud computing. for example if we have the physical systems processor with dual core processor, can i add a quad core or octa core processor as a VM to the ...
1
vote
1answer
348 views
Access to Private files on Amazon S3 with RAILS
I would like to allow users of my website see a special "Image/Video/HTML" but only if they login through facebook connect on my Rails site...
I would like to use Amazon S3 to store the media.. My ...
4
votes
3answers
540 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 ...
1
vote
1answer
91 views
Private object properties
I got a RequireJs module which instances another module and proxies some methods of it. I would now like to hide the module instance itself and only allow access through the proxy-methods.
...
1
vote
0answers
85 views
GridView Control with private fields when i bind the gridview
enter code herepublic List<VivaClass> ReturnVivaObj() //viva class all field is private
{
List<VivaClass> Objlst = new List<VivaClass>();
VivaClass obj = null;
try
{
...
1
vote
1answer
104 views
About private constants
Starting in Ruby 1.9.3, we can create private constants:
module M
class C; end
private_constant :C
end
Is there a good documentation about what this does? Is there a way to get the names of ...
3
votes
2answers
87 views
Making Javascript Private [duplicate]
Possible Duplicate:
How can I obfuscate JavaScript?
Is it possible to make some of Javascript private and confidential so that certain things can remain confidential?
2
votes
4answers
105 views
Why are my private vars being changed?
here is the fiddle: http://jsfiddle.net/Xh4GU/1
or the code:
function Vector()
{
var v = new Array(123, 456, 789);
this.getV = function()
{
return v;
}
}
function ...
3
votes
2answers
232 views
Why can private helper methods still be accessed in views?
Just another "why is it that way" question: I noticed that private helper methods still can be accessed within views. Why's that? And is there a way to prevent this (e.g. when having helper methods ...
2
votes
1answer
135 views
How can I write generalized functions to manipulate private properties?
In Matlab, I would like to perform some operations on private members of a class. I would also like to perform this exact same task on other classes as well. The obvious solution is to write a ...
0
votes
0answers
169 views
Unable to connect 2 virtual machines in a private virtual network in hyper v [closed]
I am running server 2008 r2 as a host system in which i have two virtual machines with server 2008 r2 as guest operating systems and i am trying to create a private network to communicate between ...
-6
votes
1answer
136 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
86 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
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 ...
3
votes
5answers
526 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
150 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 ...
