I have this h开发者_JS百科uge system started running yesterday. Thousands of people connecting simultaneously.. I\'m Using SQL Server 2008 and .NET 3.5 (C#);
i have a problem in my class-design. Ich have 2 classes: public class A { public B[] _bs; public string _name;
I am working on a project that has a large number of forms that users will be filling out to create a final report. A majority of these questions are multiple choice. I am struggling with the proper a
I have 4 classes: A, B, C and D. A is really a main class, and has instances of B, C and D: class A() {
The large majority of my programming knowledge is self-taught, so I was never taught proper design patterns, conventions, and so on and so forth.
Lately I\'ve been struggling with some recurrent design problem which I don\'t know how to solve elegantly.
The case: I have a form cla开发者_运维问答ss which handles HTML forms, cleans up fields and validates.
Let us have the following classes defined in eclipse\'s work space: public abstract class A { public void foo() {
I have a class say within a package com.practise.mypackageone.MyClass Class MyClass has a method /* Modifier*/ void show()
Say I have a Car class: class Car { string GetMake() string GetModel() int GetYear() } And I have a custom CarService class that holds a list of cars: