Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

32
votes
8answers
3k views

C#: Public Fields versus Automatic Properties

We're often told we should protect encapsulation by making getter and setter methods (properties in C#) for class fields, instead of exposing the fields to the outside world. But there are many times ...
26
votes
5answers
6k views

Can I change a private readonly field in C# using reflection?

I am wondering, since a lot of things can be done using reflection, can I change a private readonly field after the constructor completed its execution? (note: just curiosity) public class Foo { ...
22
votes
25answers
4k views

Why should (or shouldn't) I prefix fields with 'm_' in C#? [closed]

I've been a C++ programmer for almost 12 years now. When I moved to C# two years ago I brought with me the same coding style I was so accustomed to. Soon I realized how much useless it was in C# and ...
19
votes
6answers
3k views

How do I read a private field in Java?

I have a poorly designed class in a 3rd-party JAR and I need to access one of its private fields. For example, class IWasDesignedPoorly { private Hashtable stuffIWant; } IWasDesignedPoorly obj = ...
18
votes
11answers
617 views

Properties vs. Fields: Need help grasping the uses of Properties over Fields

First off, I have read through a list of postings on this topic and I don't feel I have grasped properties because of what I had come to understand about encapsulation and field modifiers (private, ...
18
votes
11answers
820 views

Are public fields ever OK?

Before you react from the gut, as I did initially, read the whole question please. I know they make you feel dirty, I know we've all been burned before and I know it's not "good style" but, are ...
18
votes
20answers
1k views

More private than private? (C#)

Sometimes you have a private field that backs a property, you only ever want to set the field via the property setter so that additional processing can be done whenever the field changes. The problem ...
17
votes
15answers
4k views

Auto-implemented getters and setters vs. public fields

I see a lot of example code for C# classes that does this: public class Point { public int x { get; set; } public int y { get; set; } } Or, in older code, the same with an explicit private ...
16
votes
10answers
2k views

What is the best practice for using public fields?

When I write a class I always expose private fields through a public property like this: private int _MyField; public int MyField { get{return _MyField; } When is it ok to just expose a public ...
13
votes
5answers
873 views

why non-static fields cannot be initialized inside structs

Consider this code block: struct Animal { public string name = ""; // Error public static int weight = 20; // OK // initialize the non-static field here ...
12
votes
9answers
378 views

C# constructors

Could someone advice me on what approach to take when writing C# constructors? In other languages, like C++, everything is fine - you usually don't make the internal fields visible and provide ...
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
12answers
666 views

Why ever use fields instead of properties?

I'm fairly new to C#, and I think properties are a wonderful thing. So wonderful, in fact, that I can't see any real advantage to using fields, instead. Even for private fields, it seems like the ...
10
votes
3answers
421 views

C#: Is this field assignment safe?

In this snippet: class ClassWithConstants { private const string ConstantA = "Something"; private const string ConstantB = ConstantA + "Else"; ... } Is there a risk of ending up with ...
8
votes
4answers
509 views

C#, immutability and public readonly fields

I have read in many places that exposing fields publicly is not a good idea, because if you later want to change to properties, you will have to recompile all the code which uses your class. However, ...
8
votes
4answers
2k views

C# Reflection - Base class static fields in Derived type

In C#, when I'm reflecting over a derived type, how come I don't see base classes' static fields? I've tried both type.GetFields(BindingFlags.Static) and type.GetFields(). Thanks
8
votes
7answers
11k views

Setting the selected value on a Django forms.ChoiceField

Here is the field declaration in a form: max_number = forms.ChoiceField(widget = forms.Select(), choices = ([('1','1'), ('2','2'),('3','3'), ]), initial='3', required = True,) ...
7
votes
6answers
159 views

Any reason to use auto-implemented properties over manual implemented properties?

I understand the advantages of PROPERTIES over FIELDS, but I feel as though using AUTO-implemented properties over MANUAL implemented properties doesn't really provide any advantage other than making ...
7
votes
4answers
99 views

Is it possible to list our all the string variable names and values out

Is is possible to list our the variable names from the instance and it value. public class Car { public string Color; public string Model; public string Made; } protected void ...
6
votes
2answers
151 views

Array, EAV, Serialized LOB for custom fields?

I've been trying to answer a complex Mysql data structure problem for custom fields for an online app. I'm fairly new to Mysql so any input is appreciated. The current database is a relational ...
6
votes
7answers
714 views

Initializing Class Fields at the Field Definition or in Class Constructor

I have a class with a field that needs to be initialized when the object is initialized, such as a list that needs to be created before objects can be added/removed from it. public class MyClass1 { ...
6
votes
3answers
18k views

Mysql Compare two datetime fields

I want to compare two dates with time, I want all the results from tbl where date1 > date2 Select * From temp where mydate > '2009-06-29 04:00:44'; but it is just comparing dates not time. it ...
6
votes
2answers
3k views

Why does WPF support binding to properties of an object, but not fields?

I've got a WCF service that passes around status updates via a struct like so: [DataContract] public struct StatusInfo { [DataMember] public int Total; [DataMember] public string Authority; } ...
5
votes
3answers
111 views

java static field from null

I found in internet this code: public class Foo { static int fubar = 42; public static void main(String[] args) { System.out.println(((Foo) null).fubar); } } It works. But how ...
5
votes
8answers
550 views

Printf for struct? (C/C++, VC2008)

Just build&run this in VC2008: struct A { int a; int b; int c; }; A a = { 10, 20, 30 }; printf("%d %d %d\n", a); Is it normal? 10 20 30 I'd like to cast! but it don't works: struct ...
5
votes
1answer
212 views

Does `productElement(i)` on a case-class use reflection?

Considering the following Scala snippet: case class Foo(v1: String, v2: Int, v3: Any) def inspect(p: Product) = (0 until p.productArity).foreach(i => println(p.productElement(i))) ...
5
votes
1answer
3k views

Lucene QueryParser two Fields

hello i read [LUCENE.NET] How to incorporate multiple fields in QueryParser? but i didn't get it. at the moment i have a very strange construction like: parser = New QueryParser("bodytext", ...
5
votes
2answers
3k views

Using jQuery to dynamically add form fields (or fieldsets) based on a dropdown box value

As the title says, what I am trying to do is to have jQuery add a number of extra fieldsets based on the value selected in a drop-down box. For example, when the page loads, the drop-down has a ...
5
votes
4answers
133 views

Naming form fields in a web page

How do you name your field names in a web page without revealing the structure of your database tables?
5
votes
3answers
6k views

C# Reflection : Finding Attributes on a Member Field

I may be asking this incorrectly, but can/how can you find fields on a class within itself... for example... public class HtmlPart { public void Render() { ...
5
votes
5answers
10k views

How do I enable saving of filled-in fields on a PDF form?

Some PDF forms can be saved, including all filled-in field data: Some others can not be saved, and all filled-in field data are lost: How do I enable saving of filled-in fields on my PDF form? ...
4
votes
2answers
52 views

Getting all friends' pictures using the fields parmeter doesn't seem to work?

I use the JavaScript SDK for Facebook Connect. Yesterday I loaded all the friends of a logged in user like this: ...
4
votes
5answers
128 views

Getting public fields (and their respective values) of an Instance in Scala/Java

PHP introduces a method that allows you to pick out all public values of an instance. Is there any way to do this in Scala? That is to fetch all values of all public fields of an instantiated class ...
4
votes
6answers
179 views

(My)SQL performance: updating one field vs many unneccesary fields

i'm processing a form that has a lot of fields for a user who is editing an existing record. the user may have only changed one field, and i would typically do an update query that sets the values of ...
4
votes
1answer
55 views

Style guideline to prevent unwanted field access

I once saw a question here about whether it is possible to embed fields in properties so they cannot be accessed in the rest of the class, e.g. public string Name { private string _name; get ...
4
votes
3answers
385 views

What is the difference between `Fields` and `Properties` in C#?

Edit, as per these comments: Do you mean "Property" vs "Field"? public String S1; vs public String S2 { get; set; } – dana Exactly dana, i mean the same. – Asad Asad: you really need ...
4
votes
1answer
422 views

Scala class members and constructor parameters name clash

Consider the following class written in Java: class NonNegativeDouble { private final double value; public NonNegativeDouble(double value) { this.value = Math.abs(value); } ...
4
votes
5answers
150 views

Is there an elegant way to set a default value for a property in c#?

I have read that there are good reasons to use properties instead of fields in c# on SO. So now I want to convert my code from using fields to using properties. For an instance field of a class, I ...
4
votes
1answer
134 views

In what circumstances are instance variables declared as '_var' in 'use fields' private?

I'm trying to understand the behavior of the fields pragma, which I find poorly documented, regarding fields prefixed with underscores. This is what the documentation has to say about it: Field ...
4
votes
1answer
605 views

How to make a Django model fields calculated at runtime?

I have a model: class Person (models.Model): name = models.CharField () birthday = models.DateField () age = models.IntegerField () I want to make age field to behave like a ...
4
votes
5answers
1k views

Initializing fields in inherited classes

What's the best way to initialize constants or other fields in inherited classes? I realize there are many syntax errors in this example, but this is the best example to explain clearly what I am ...
4
votes
11answers
7k views

Java: Interface vs Abstract Class (regarding fields)

From what I have gathered, I want to force a class to use particular private fields (and methods) I need an abstract class because an interface only declares public/static/final fields and methods. ...
3
votes
4answers
42 views

PHP checking if empty fields

I have a sign up form with about 10 fields and they are all required to be filled in before processing, so trying to avoid all those if checks I came up with this, is this a good method? ...
3
votes
2answers
44 views

PHP including external files which use class fields from base file

Let's say I have a class... class A { private $action; private $includes; public function __construct($action, $file) { //assign fields } public function includeFile() ...
3
votes
1answer
636 views

MySQL - how to remove white space in a mysql field

I have a table with two fields (countries and iso codes) Table1 field1 - eg 'Afghanistan' (without quotes) field2 - eg 'AF'(without quotes) in some rows the second field seem to have a white ...
3
votes
3answers
94 views

exposing table name and field names in request URL

ok, i was tasked to create this Joomla component (yep, joomla. but its unrelated) and a professor told me that i should make my code as dynamic as possible (a code that needs less maintenance) and ...
3
votes
7answers
123 views

Is having a lot of data fields a bad thing?

In Java, is having ~50 data fields in a class of about 1000 lines a bad thing? Edit: Thanks for the feedback. Has really opened my eyes and I'll try to delegate functionality across more classes ...
3
votes
4answers
84 views

How to enforce a unique combination of two similar fields in MySQL

I have a set of points, defined by an id, and a database table which defines a connection between those points: [point1, point2] Now I can enforce that permutations of point1 and point2 are unique. ...
3
votes
2answers
150 views

Accessing field of outer class

How do I access a field of an outer class, given a reference to an object of the inner class? class Outer { int field; class Inner { void method(Inner parameter) { ...
3
votes
3answers
132 views

How to iterate a C# class look for all instances of a specific type, then calling a method on each instance

Is it possible (via reflection?) to iterate all fields of an object calling a method on each one. I have a class like so: public class Overlay { public Control control1; public Control ...

1 2 3 4 5 10