Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

58
votes
6answers
57k views

In Java, what's the difference between public, default, protected, and private?

Are there clear rules on when to use each of these when making classes and interfaces and dealing with inheritance?
15
votes
8answers
606 views

Useful databases around web

As Tim Berners-Lee told at TED, there's lots of hidden data. What useful free databases or APIs you know around web? For example: European Union's VAT number validator Team Cymru's IP Address to ...
13
votes
2answers
5k views

How to setup public git repositories?

I recently tried to setup git repo on a linux box and wasted about 10 hours with absolutely no results. There aren't any problems with compilation or anything like that, it's just configuration issue. ...
13
votes
12answers
4k views

Should I use internal or public visibility by default?

I'm a pretty new C# and .Net developer. I recently created an MMC snapin using C# and was gratified by how easy it was to do, especially after hearing a lot of horror stories by some other developers ...
11
votes
12answers
587 views

What are the alternatives to public fields?

I am programming a game in java, and as the question title suggestions i am using public fields in my classes. (for the time being) From what i have seen public fields are bad and i have some ...
11
votes
4answers
1k views

PHP: Public, Private, Protected

When and why should I use and what's the deference between, public, private and protected functions/variables inside a class? Examples: // Public public $variable; public function doSomething(){ ...
10
votes
7answers
2k views

Bus public transport algorithm

I am working on an offline C# application that can find bus routes. I can extract the timetable/bus/route data. I am searching for the most simple solution that will work with basic data. What ...
9
votes
2answers
280 views

Friend declaration in C++ - difference between public and private

Someone told me that there is a difference between declaring a friend class in the public or private areas of the class, but I can't seem to find anything about this online, and I'm not sure they knew ...
9
votes
3answers
415 views

Visual C# 2010 Express: Specify default access modifier for new classes?

Whenever I create new classes using Visual Studio 2010 Express C# it creates them with no access modifier. 9 times out of 10 I want my new classes to be public. How can I have visual studio create ...
9
votes
3answers
616 views

protected vs public constructor for abstract class? Is there a difference?

This question is out of curiosity. Is there a difference between: public abstract class MyClass { public MyClass() { } } and public abstract class MyClass { protected MyClass() ...
8
votes
4answers
7k views

public static final variable in an imported java class

I happen to come across a Java code at my work place. Here's the scenario: There are 2 classes - ClassA and ClassB. ClassA has nothing except 4 public static final string values inside it. Its ...
8
votes
13answers
790 views

Public code repository

Can anyone recommend a public code repository? A few friends and I are thinking of starting a few projects for iPhone, web, Android, etc., and it would be nice to have a public (internet) code ...
7
votes
28answers
862 views

In Java, is it ever a bad idea to make an object's members publicly available?

I have a data class in my application. My application will never be used as a public API and I will be the only person developing code within my project. I am trying to save every ounce of ...
6
votes
3answers
188 views

Hide public method used to help test a .NET assembly

I have a .NET assembly, to be released. Its release build includes: A public, documented API of methods which people are supposed to use A public but undocumented API of other methods, which exist ...
6
votes
4answers
345 views

Any problems with this C++ const reference accessor interface idiom?

I was converting a struct to a class so I could enforce a setter interface for my variables. I did not want to change all of the instances where the variable was read, though. So I converted this: ...
6
votes
1answer
340 views

Accessing “Public” methods from “Private” methods in javascript class

Is there a way to call "public" javascript functions from "private" ones within a class? Check out the class below: function Class() { this.publicMethod = function() { ...
6
votes
3answers
787 views

Public and Internal members in an Internal class?

Ok, so this may be a bit of a silly question, and there's certainly the obvious answer, but I was curious if I've missed any subtleties here. Is there any difference in terms of visibility/usability ...
6
votes
9answers
285 views

A pragmatic view on private vs public

I've always wondered on the topic of public, protected and private properties. My memory can easily recall times when I had to hack somebody's code, and having the hacked-upon class variables declared ...
5
votes
1answer
127 views

Scala trait - Is there an equivalent of Java interface public static field?

In Java: public interface Foo { public static final int Bar = 0; } And in Scala, how can I create a trait Foo that has Bar, and I can access it as: Foo.Bar?
5
votes
4answers
123 views

Unencapsulated means Unchangeable?

I came across this line in Effective C++: Public means unencapsulated, and practically speaking, unencapsulated means unchangeable, especially for classes that are widely used.Yet widely used ...
5
votes
4answers
2k views

Does static method in PHP have any difference with non-static method?

class t { public function tt() { echo 1; } } t::tt(); See?The non-static function can also be called at class level.So what's different if I add a static keyword before public?
5
votes
4answers
1k views

Protecting the content of public/ in a Rails app

I'm maintaining a Rails app that has content in the public/ folder that will now need to be protected by a login. We're considering moving those folders of files into a path outside of public/ and ...
4
votes
2answers
77 views

Java - JVM and private methods

I am a beginner in Java . The first thing I learned was the main() method of an executable class should be public and the reason given was since this method will be called by the JVM it should be ...
4
votes
3answers
52 views

Are Ruby imported methods always private?

This is best explained with an example: file1.rb: def foo puts 123 end file2.rb: class A require 'file1' end A.new.foo will give an error "': private method 'foo' called". I can get ...
4
votes
3answers
56 views

Does variable privacy actually have anything to do with security or is it just for programming convenience?

For years I have been programming and I think I even understand the difference between public, private and protected for the most part, however are these names simply misleading? Are these levels of ...
4
votes
5answers
177 views

The advantage / disadvantage of private variables?

I'm used to make pretty much all of my class variables private and create "wrapper" functions that get / set them: class Something{ private $var; function getVar(){ $return $this->var; ...
4
votes
4answers
110 views

C++ Protected / Public overloads

I have a class like this : class Foo { public: Foo() { for(int i = 0; i < 10; ++i) v.push_back(i); }; const vector<double>& V() const {return v;}; ...
4
votes
2answers
63 views

What's the best way to track private files in a public Mercurial repository?

"If it’s not in source control, it doesn’t exist." This question was addressed for Git here: Techniques to handle a private and public repository?. What about for Mercurial? I have several public ...
4
votes
2answers
158 views

Besides accessibility, what else access-specifiers effects?

Besides the normal explenation of being visible or not to derived classes, is their any other difference? If you make it more visible, is it taking more or less memory, does it slow thing down or...? ...
4
votes
2answers
288 views

Why can't I call a private method when I'm inside a public method?

I have the following code: class MyClass: def __private(self): print "Hey man! This is private!" def public(self): __private() print "I don't care if you see this!" ...
4
votes
7answers
335 views

C# public variable as writeable inside the clas but readonly outside the class

I have a .Net C# class where I need to make a variable public. I need to initialize this variable within a method (not within the constructor). However, I don't want the variable to be modifieable ...
4
votes
4answers
144 views

Set returned value from method as public string

I'm trying to pass a value between forms - in this case, the result of a highlighted cell in a DataGridView. In my main form, I get the value using a public string method: public string ...
4
votes
1answer
275 views

Which Delphi version supports RTTI for public methods?

By default, RTTI in versions below 2010 is only created for published class members. I have read in a 2006 blog (http://hallvards.blogspot.com/2006/09/extended-class-rtti.html) that using $METHODINFO ...
4
votes
4answers
213 views

What does it means? [c#]

If we define a property as public property and in this property we have a protected getter. what does it means? if property is public, what does defining a protected getter for that, means? please see ...
4
votes
4answers
1k views

Closest Ruby representation of a 'private static final' and 'public static final' class variable in Java?

Given the Java code below, what's the closest you could represent these two static final variables in a Ruby class? And, is it possible in Ruby to distinguish between private static and public static ...
4
votes
2answers
873 views

Auto-push changes to one folder in a git repository to github?

I have a repository that I work in. There's one folder in there where I put all the stuff I want to open source so it's separate from the private parts. Is there a way to automatically get git to push ...
4
votes
3answers
259 views

Use of “Public” in a derived class declaration?

Given this base class: class Employee { char* name; int age; public: Employee(char* name); void print(); }; With regards to the "public", what's the difference between this: ...
4
votes
2answers
2k views

Do you ever use protected visibility in Rails?

Confession: I only use private and public visibility for my methods! I have a feeling this is a bad thing. But in Rails it just doesn't seem to come up as an issue. Does anyone have an example in ...
4
votes
2answers
126 views

Where can I find useful item lists (SQL, or plain text) like sports, hobbies, and others?

GeoNames public geographic locations index is a very useful website that I have used to import a list of countries and cities into my web app. Now, are there any other public databases that would ...
3
votes
9answers
195 views

Learning java, why are my privates private? [closed]

Im learning java, coming from python there are quite a few things I don't fully understand that exist in java and the first of these has to be public and private declarations. I mean from a language ...
3
votes
1answer
72 views

diff between public and not function

what is the different between public function something() { } and function something() { } any explaination? which more better?
3
votes
3answers
670 views

Change public folder location in Zend_Framework project?

I want my public_html folder on my server to be the public folder in my zend project. You guys any idea how I can do this? Right now I have to view my site with domain.com/public I tried changing the ...
3
votes
5answers
337 views

public methods in package-private classes

Does it make a difference to mark methods as public in package-private classes? class SomePackagePrivateClass { void foo(); // package private method public void bar(); // public ...
3
votes
4answers
215 views

C# - unable to return List

i'm trying to return list of objects from a class and get the following error: Error 1 Inconsistent accessibility: property type 'System.Collections.Generic.List<EventXmlExtract.Attribute>' ...
3
votes
1answer
266 views

scala equivalent of java public field

In java, I have a class like this: public class MyClass extends Properties { public StringProperty prop1 = new StringProperty(this, "default value for prop1"); public StringProperty prop2 = ...
3
votes
3answers
87 views

If I add a public method to a C# class, do I need to recompile other assemblies using that type?

Question in the title. I'd like to avoid recompiling since the source code I'm modifying is third party and I'd like to use the original binaries where possible, and replace only the assembly which ...
3
votes
6answers
240 views

Can there be two public section in a class? If yes then why ? And in which circumstances we do so?

I have a doubt related to class. For example class A { public: A() { ..... ..... } void cleanup() { .... .... .... } public: UINT a; ULONG b; }; In the above example there are two public section, ...
3
votes
4answers
461 views

Ruby private instance variables, with exceptions

I am making a card game in ruby. I have the Game class, which has an array of Player objects. array_of_players = Array[ Player.new("Ben"), Player.new("Adam"), Player.new("Peter"), ...
3
votes
2answers
365 views

How to easy find unused public methods/properties

I have a .Net(C#) solution. The solution contains bunch of projects. The projects were implemented not by me. It is not a framework, it means that I need to have amount of public methods/properties as ...
3
votes
2answers
95 views

Is there a way to access the private parts of a different instantiation of the same class template?

In my continuing adventure with templates, I've templated my Container class not just on the ItemType it holds, but also on a Functor argument that determines how it should order the items. So far, ...

1 2 3 4 5 6