`public` is an access-specifier in object-oriented languages; it indicates that all objects have access to the `public` field or method.

learn more… | top users | synonyms

0
votes
3answers
43 views

Making instances of forms public C#

I am attempting to pass information from a child form to a parent. I have been using the following code I found on a forum to help me: Form1.cs using System; using System.Collections.Generic; using ...
0
votes
1answer
19 views

Proper implementation of object parameters

I just want to make sure I'm doing this correctly. I'm a little confused between $this->parameter, $parameter and public $parameter Here's an example of what I'm doing. I want anything that's ...
0
votes
1answer
23 views

how to make a UDP python localhost go public

I have a python localhost set up on a raspberry pi to listen for UDP packets. But I'm wondering how I can make this a public server in order to send UDP packets from roaming devices. The below code ...
-1
votes
0answers
13 views

how to link twitter to facebook public figure [closed]

So I found this guide(https://support.twitter.com/articles/31113-using-twitter-with-facebook) it works just fine for the " fb personal account ". Nevertheless when I try to do it using my "fb public ...
0
votes
1answer
23 views

Compiler.getTask ERROR Compiler

I am compiling this class with JavaCompiler and it gives me a compilation error if the String that I pass to compile is this: public class className extends classNeed{ } But if I delete public it ...
-4
votes
1answer
43 views

How to access/edit/delete variables in a class [closed]

What is the best way to accomplish the following: class foobar { public $a = 'one'; private $b = 'two'; } $obj = new foobar(); ( here ) From ( here ) how is the following accomplished? ...
-2
votes
1answer
34 views

What Permission to set for a Facebook app to Post PUBLICLY [closed]

I spent lengthy hours looking for answers but to no avail. What facebook android SDK PERMISSION to use for the app to request to the user to post PUBLICLY (NOT to friends but publicly) on the user's ...
1
vote
0answers
46 views

how to put css and javascript someplace other than under public folder

Nevermind the reason why, I know it goes against the grain of putting css under public/stylesheets and js in public/javascripts (this is a legacy Rails 2.3.5 project, I'm asking about), and there is a ...
0
votes
0answers
12 views

Ordinary users not able to access my public repo on GitHub

I am a newbie to GitHub. Few days ago, I put a Dot Net 2010 project onto my GitHub account. Previously I as an ordinary public user (non-admin user) was able to access this Repo, but now when I have ...
0
votes
1answer
30 views

Umbraco: Deny public access for media files of content

I'm working with Umbraco 4.11.8. For my website I have a document type, that contains a field to upload PDF files. The created content items of this document type aren't public so a specific ...
0
votes
1answer
31 views

Facebook App Visibility to Public

What Facebook SDK permission should I ask to make my facebook app visible to public? From the App User settings on the facebook page, I am unable to change Visibility of app and posts from Friends to ...
0
votes
0answers
72 views

Array become empty after it filled

I have a terrible problem in my code. I use this code to compare Arabic characters, every thing is fine in the comparison. I also use an array called numbers to store some statistic numbers within ...
-4
votes
1answer
51 views

How do you use public methods (jquery) [closed]

Just a quick question, How do you use public methods from a JavaScript, I cant seem to work anything out. Im trying to use the ones from here: https://github.com/georgepaterson/jquery-videobackground ...
3
votes
1answer
48 views

Can't access protected member in base class from derived class

Heres my code : #include <iostream> #include <cmath> #include <sstream> using namespace std; class root { protected : int size; double *array; ...
-2
votes
0answers
20 views

get variable from other file [closed]

I've got an informative app for Android, made by writing html/css code and upload and compile it on build.phonegap.com (because I can't write Java). The app is made for a little group of people I know ...
0
votes
1answer
91 views

How declare Textbox value (using Controls.Find) in public partial class without error?

Hi i have code that create new variable for textbox that not exist yet, but can be created on runtime. it work great, see code bellow public void btnApagar_Click(object sender, EventArgs e) { ...
0
votes
1answer
44 views

Private/Protected variable “error: within this context”

I have a class based off of the SFML gamefromscratch.com tutorials, called "VisibleGameObject" Within this class, is a private variable "_sprite", as well as a "getSprite()" function that I tried as ...
1
vote
0answers
47 views

New pc causing “namespace of type specified in the imports doesn't contain any public member” in VB.NET

I just got a new PC (Win 7) with VS 2010 (same version as my old PC). I got a VB.NET solution from source control that contains two projects. One of the projects builds fine. The other project ...
1
vote
2answers
59 views

Java: How can I shorten codes which are usen often?

I am working on a Android App. Everything is okay and everything does work but I want to short some commands which are usen very often. Here is a part of my code: public void ButtonKlick (View view) ...
2
votes
1answer
30 views

Use multiple public directories in Sinatra

My sinatra application is contained in a gem. This means that the assets (css/js) live in the gem. This application writes on the fly generated images and serves them; currently writing into and ...
0
votes
0answers
12 views

navigable directories presented publicly using Dropbox

I have lots of directories of files publicly accessible on Dropbox. I am looking for a nice way of making all of those files, in their directories, navigable and viewable using a web browser. I do not ...
-1
votes
0answers
9 views

Aware of exposed API's for integration?

I am trying to get this UX embedded.Is there a API exposed for akamai network's http://www.akamai.com/html/technology/dataviz3.html?WT.ac=hp_traffic
1
vote
2answers
54 views

Inconsistent accessibility error declaring public class method with internal type (C#)?

I have a JSON class object that is an internal class. I'd like to keep it that way to keep other code from trying to create objects of that type since I only want the JSON deserialization code to do ...
-1
votes
2answers
24 views

PHP-SDK publish link not available for public

When publishing a new link, using php sdk, the link is only available for logged user, it's not publish as public. $facebook = new Facebook(array( 'appId' => $appId, 'secret' => $secret, ...
1
vote
0answers
11 views

Sharing Server On network?

I Have IBM Server , Windows Edition : Windows Server 2008 R2 , OK? I have some photo I want to put them on a folder on the server, so that any user on the network have access to the images and ...
0
votes
1answer
24 views

How to fix Error “A conflict exists with definition * in namespace public.” using ASC2.0?

In a class hierarchy where: MngLayers extends Manager_Panel, which extends Manager_Base... -- In Manager_Base, I've defined an init() method: public class Manager_Base { //.... public ...
0
votes
1answer
43 views

i cannot get the GCM ID in Android in one app

[Solved but i still want an answer for the last question please, the problem was i was using capital letters instead of lower i let the code so other can correct errors] I have tried some forum pages ...
0
votes
3answers
48 views

PHP: Best practice regarding “public” visibility in OOP

Do you always add public beside methods and properties inside your classes? Or do you leave it out? 1. Option 1, without public: <?php class SimpleClass { // property declaration $var = ...
0
votes
3answers
64 views

C# Access Of Public Method Between Forms

I'm trying to do a simple project for my module. I made a login system for my program and the idea is the menustrip controls are disabled until the user puts in the correct details and submits it. So ...
-1
votes
0answers
24 views

AES in python using pyCripto [closed]

I am working on a project on aes implementation in python but I can't figure out How to implement aes in python. How to generate the local and private key.? And how to convert a plain text to criper ...
-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 ...
-2
votes
0answers
33 views

Access public function

I would need to access value of a public function with a class. This is the class: global $smarty; global $cookie; include(dirname(__FILE__).'/config/config.inc.php'); class GetidControllerCore ...
4
votes
1answer
55 views

Prefered style using public/private statements in Fortran?

For example: module m_a private integer :: x, y public :: x end module m_a module m_b public integer :: x, y private :: y end module m_b Obviously the variables x and y have equivalent ...
0
votes
1answer
40 views

Make a private C++ function visible to Qml

I have been making my C++ functions callable from Qml by following the approach given in Qt documentation. This require one of these conditions to be fulfilled : Make the C++ function public and ...
-6
votes
3answers
43 views

Java never declares access level of variables in methods whether static or not [closed]

Today I suddenly realized that Java never specifies access level for local variables when I try to declare a variable for main method. I also tried to give it a access level modifier, but it doesn't ...
1
vote
1answer
43 views

Exchanging Public Keys in .NET

I am trying to exchange the public keys of a client and a server. As soon as I make the request from the client and send the key to the server, the following exception is being raised by the server: ...
0
votes
0answers
28 views

MySQL set server to run not externally for internet

I know, that if I want I could run my application ( C++ or .NET ) , which I've developed internally. I mean, I have an external IP for my PC, but for the security reasons I don't want my application ...
0
votes
2answers
33 views

How would I call this method to clear database at the start of my App?

This Method is in my database class public boolean deletePlayers(long paramLong) { return this.mDb.delete("Players", "_id=" + paramLong, null) > 0; } I want to call it in my Launch ...
2
votes
1answer
186 views

Public Key Crypto with Private Key Encryption

I'm trying to implement the following in C#: I want a Generator that internally houses a public-key encryption routine. It can take a byte array that's provided to it (usually by a Client described ...
1
vote
5answers
81 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 ...
4
votes
4answers
60 views

Do I have to make data private?

I know that data in a class should be private then use getter and setter to read/modify them. But isn't it very troublesome compare to using student.scores.push_back(100) directly which saves a member ...
0
votes
1answer
50 views

VB.NET Add row data to public class / public field of type List(Of T) Object reference not set to an instance of an object

I am trying to add rows to a public class that has public fields and am getting an error: Object reference not set to an instance of an object Public Class EmailRecipient EmailAddress As ...
-1
votes
1answer
36 views

“Public” events not accessible to the public? [closed]

I created an event a couple of weeks ago that is a public event. At the time, I am pretty sure I could view the event when I wasn't logged into Facebook. However, today when I go to the event URL is ...
0
votes
2answers
81 views

Do I have to declare a class public (it's the only class in a program nobody will ever use)

I'm a beginning computer science student going through the Java gauntlet. We had to write a program with an error in it; it was a fun exercise actually. One of my classmates emailed me a patch(in ...
3
votes
2answers
34 views

Is it safe to use a Shared property for authentication verification?

Should I be using Shared, or just a Public function and initiate a class when needed? I have read a number of articles, but still cant get my head around the best option here. Here is the code I ...
0
votes
1answer
31 views

Dictionary Inconsistent Accesability

I get an error in the code below on the first mention of the word tables. I need that dictionary to be usable by all classes. the error reads: Error 1 Inconsistent accessibility: field type ...
0
votes
0answers
22 views

HPCloud-PHP How to make public an Object but not Container listing (HP Object Storage)

I have been using the HPCloud-PHP library for manipulating with HP Object Storage, and its document located in following URL ...
2
votes
2answers
75 views

Can I Expose The Hashed Salt + Password?

I am using a SHA-512 hash 1000 times on a salt + password. Is it safe to return that when querying information about a user or should I secure it and make it available only over HTTPS? For example, ...
4
votes
2answers
185 views

Why does Typescript use the keyword “export” to make classes and interfaces public?

This may be a silly question, but while dabbling with Typescript I realised my classes withing modules (used as namespaces) were not available to other classes unless I wrote the export keyword before ...
0
votes
1answer
52 views

Error Illegal Modifier

I was using these lines of code... public static final int WIDTH = 240; public static final int HEIGHT = 350; public static final int SCALE = 2; but I always got these errors ... Illegal modifier ...

1 2 3 4 5 11