-1
votes
1answer
64 views

Java Question for An Absolute Beginner [closed]

This is for a beginning Java course that poses the problem: Write a class named Employee that has the following fields: name. The name field references a String object that holds the employee's ...
1
vote
1answer
114 views

Playing Card Class - is this right?

The Art and Science of Java, a course book that uses the ACM library has an exercise that reads like this. Implement a new class called Card that includes the following entries: • Named ...
3
votes
2answers
88 views

improve the design of class “accuracy” in Python

I am learning about the class and methods in Python. The class Accuracy is a class of several (13 in total) statistic values between a reference polygon and one or more segmented polygons based on ...
0
votes
0answers
69 views

Which of ways to construct object is better?

Object, which is going to be constructed, has several constant. What of ways to place constants is better and why? The first way is function for each member: BarcodeObject::BarcodeObject() : ...
1
vote
1answer
189 views

How can I improve upon my SharePoint Class?

To help learn the SharPoint Object Model (Primarily for SharePoint 2007) I've been working on a class library with a number of useful functions. I'm a junior developer and this is my first C# project ...
2
votes
1answer
53 views

RegEx Code Organization

I've written an algebraic notation to use for moves in a game and I'm currently writing code to parse the information from the notation. I'm doing this using regExes. This is coded in HaXe. For ...