Hot answers tagged design-patterns
2
You do not actually need to parse the language to do this.
Assuming you have a list of valid symbols you need only choose the most likely completions when the user presses the autocomplete key (say, TAB, eg). You can weight the symbols by their frequency in the code. You can also weight by symbol type, giving more weight to variable names than reserved ...
2
Dictionary isn't designed to be accessed by multiple threads, and you aren't synchronizing access, so no, it won't always work as expected when accessed simultaneously.
The simplest solution is to use a ConcurrentDictionary instead of a Dictionary.
1
Dictionary class is not thread-safe, you can use ConcurrentDictionary to atomically check if element is in dictionary and add/get value from dictionary:
public sealed class Multiton<T> where T : class, new() {
private static readonly ConcurrentDictionary<object, Lazy<T>> _instances = new ConcurrentDictionary<object, ...
1
The access to the Dictionnary is not synchronized. You should lock it:
public static T GetInstance(object key) {
lock (_instances) {
Lazy<T> instance;
if (!_instances.TryGetValue(key, out instance)) {
instance = new Lazy<T>(() => new T());
_instances.Add(key, instance);
...
1
I'm new to the multiton concept and question its necessity. That said, you could improve on this considerably by using a ConcurrentDictionary<T> as follows:
public sealed class Multiton<T> where T : class, new() {
private static readonly ConcurrentDictionary<object, Lazy<T>> _instances =
new ...
1
Just put every list into a json container
then put a click listener on that lists and add the specific json items to the next list
//// PSEUDOCODE ////
var json{
"a": {
"a1": {
"b1": "item",
"b2": "item",
"b4": "item"
},
"a2": {
//stuff
}
},
"b":{
"b1": "items"
//etc
}
}
select(){
var ...
1
You need a state machine that recognizes the grammar of your language. Additionally, the state transitions should be weighted according to their probability.
If the state of your engine is at public static, the weight of the state transition class could be higher than that of abstract. This would be necessary to display a practical number of options as ...
1
There is a nice tutorial on Matcher at http://docs.oracle.com/javase/tutorial/essential/regex/matcher.html
Looks like replaceFirst(String) and replaceAll(String) described on that page could work. They will replace the matching text and you can replace with same text plus the \n.
1
Are you looking for something like this?
yourString = yourString.replaceAll("yourRegex","$0\n")
$0 represents group 0 which is part matched by entire regex. Also instead of \n you can use System.getProperty("line.separator") to pick separator used in your OS.
1
You can use Protocols. These are the successors to multimethods which support polymorphic behavior. In addition, when you define a Protocol, it can compile to a Java interface with the :gen-class namespace directive.
Here are some good links to help your understanding:
Rifle-Oriented Programming with Clojure
Polymorphism in Clojure
However, I am ...
1
I would not do it. My rule is: supply service methods with everything they need to do their job and nothing more.
Why?
Because it reduces coupling. More often than not service methods are addressed from several sources (consumers). It is much easier for a consumer to fulfil a simple method signature than having to build a relatively complex object like a ...
1
Fundamentally, I agree with your approach. You have successfully identified an approach that allows you to extend Robot (a parts composite) without having to actually modify the Robot class. The only changes I would make are the following:
I would introduce a new interface named something like IPartsComposite that would define the Accept method. This ...
Only top voted, non community-wiki answers of a minimum length are eligible
