Tagged Questions
4
votes
3answers
570 views
Code review if nobody in team has knowledge in some technology?
Sample situation: A team of Java developers starts an iOS project. Only one developer has Objective-C/iOS knowledge, and in the beginning he will work on this project alone.
How we can perform code ...
2
votes
0answers
86 views
How can I make a universal construction more efficient?
A "universal construction" is a wrapper class for a sequential object that enables it to be linearized (a strong consistency condition for concurrent objects). For instance, here's an adapted ...
1
vote
2answers
192 views
Is there any issue if ternary operator is used in super() method [closed]
I am using a ternary operator in super () method of my code. While the code went for review, I got a reply that
Strictly don’t use ternary operators in the Super() calls.
Is there any problem ...
1
vote
3answers
186 views
Is it appropriate to remove redundant code explicitly assigning the default values?
Sometimes while I'm editing something I see some useless code added by other developers, probably due to habit.
Editing this code will not make any difference, so is it appropriate?
In my specific ...