The public-fields tag has no wiki summary.
2
votes
2answers
263 views
Acceptability of public fields in JavaScript
I'm just wondering if public fields (i.e. those not scoped inside the constructor's closure) are acceptable in JavaScript. While the usual mantra is "don't use public fields, use accessors or ...
1
vote
2answers
1k views
Java secondary not public Class usage produces error “Type is not Visible” even if accessed methods are public in Main class
I have a Main.java file:
public class Main{
private EntityDrawer entityDrawer;
public void setEntityDrawer(EntityDrawer entityDrawer) {
this.entityDrawer = entityDrawer;
}
public ...
0
votes
6answers
492 views
a way in c++ to hide a specific function
i have an inheritance struct A : public B, i want to hide individual functions from B, is this possible?
i know the opposite is possible using using BMethod in the A declaration.
cheers
-1
votes
2answers
198 views
Is there a free pgp key dumping program? [closed]
is there any pgp key dumping program like http://www.pgpdump.net/ that also shows the MPI values as well as the other information? the linked website's program will print out ... for the long MPI, ...
0
votes
4answers
51 views
Is there ever a use for a class that only contains public instance-fields?
I was performing a code review and I saw a class that a developer had created, that only contained public instance-fields. This class is not used in business logic; it is merely used to hold test data ...
1
vote
7answers
148 views
In what cases should public fields be used instead of properties? [duplicate]
Possible Duplicate:
Public Data members vs Getters, Setters
In what cases should public fields be used, instead of properties or getter and setter methods (where there is no support for ...
1
vote
1answer
104 views
Reading PGP key information
can someone show a description of the information of what a pgp looks like if only the descriptions were there but not the actual information? something like (i dont remember if the values are ...
6
votes
3answers
10k views
How to access @public instance variable from another class in Objective-C?
I know it's possible to define public instance variable with @public keyword.
However, Objective-C syntax does not allow accessing other class' variable.
What features should I expected from @public ...
2
votes
1answer
359 views
Field level attribute vs Property level attribute
This is something I find rather curious, that a lot of third party libraries such as FileHelpers and Command Line Parser are designed to work at field level rather than property level.
Is there a ...
2
votes
2answers
4k views
Dynamic Data with Entity Framework… using [ScaffoldColumn(true)] to show a public property via metadata
... it just doesn't work, at all. I've tried for days, with all different combinations of frick'n stuff and it won't budge.
There are certainly people out there who seem to be blogging about ...
3
votes
2answers
826 views
Tools for refactoring C# public fields into properties
I have a lot of C# code that uses public fields, and I would like to convert them to properties.
I have Resharper, and it will do them one by one, but this will take forever.
Does anyone know of an ...
29
votes
5answers
3k views
Why are public fields faster than properties?
I was poking around in XNA and saw that the Vector3 class in it was using public fields instead of properties. I tried a quick benchmark and found that, for a struct the difference is quite dramatic ...
2
votes
4answers
701 views
Public boost::signal object
I make my boost::signals public because I'm lazy.
class Button {
public:
signal<void()> clicked;
};
int main() {
Button btn;
btn.clicked.connect(handleClick);
}
... rather than ...