Tagged Questions

2
votes
2answers
58 views

Java Code Review: Generate a subgraph

I'm using JGraphT and I want to generate a subgraph, like this: If there's a graph like {stuff -> a -> b -> stuff}, and you ask for the subgraph in direction of {a -> …
6
votes
4answers
116 views

Class Identifier used inside the class declaration. Is it a good practice?

While reviewing one of our C++ class through coverity, it showed an error message on a particular class. The class is as follows: class InputRecord { /* Construtor */ ... …
9
votes
4answers
1k views

How to get the FxCop custom dictionary to work?

How is it possible to get the FxCop custom dictionary to work correctly? I have tried adding words to be recognised to the file 'CustomDictionary.xml', which is kept in the same f …
0
votes
1answer
3 views

Where will the result will be stored? after executing PMD

Hi I am using PMD to do code-review for my application. I am able to do the review, but i dont have a clue where the report will be stored. i am using this cmd "C:\PMD test\Source …
0
votes
3answers
57 views

How to find empty catch blocks in Java code

Hi, is there any way to find out all the empty catch blocks inside Java code. I know there are some tools like PMD to do that, but i am using RSA, is there any way we can write a r …
8
votes
16answers
447 views

From a Management POV: How much is a code review worth?

It's obvious to me that code reviews (peer reviews) improve the quality of the generated code. I've worked hand to hand in some code with some of my coworkers and, specially with …
11
votes
12answers
426 views

How to train junior programmers in code review?

We're looking to start a code-review process for a group of ~30 coders who are all relatively junior programmers. What is your advice on how to train for code reviews? Are there …
-1
votes
8answers
279 views

What was trickiest code you’ve ever written?

Hi, As a programmer, I know sometime all has to write some code which they think -"Thank God! It's done" or "Ohh, how did I write it?"... Do you have any such piece of code.
0
votes
5answers
165 views

Java Code Review: Merge sorted lists into a single sorted list

I want to merge sorted lists into a single list. How is this solution? I believe it runs in O(n) time. Any glaring flaws, inefficiencies, or stylistic issues? I don't really like …
5
votes
7answers
260 views

Is this a clear use of goto?

Hi All, Just wondering if this is considered a clear use of goto in C#: IDatabase database = null; LoadDatabase: try { database = databaseLoader.LoadDatabase(); } catch(Databas …
2
votes
7answers
68 views

Cleaner way to translate index into specified string?

Could I achieve this in a more cleaner way? Would be really appricated. switch($vocation) { case 1: $vocation = "Sorcerer"; break; case 2: $vocation = "Druid"; …
0
votes
0answers
99 views

[review?] C++ selectors and method delegates

Hi, I just wrote this for handling method selectors in C++ in an Objective-C way. I can see some advantages over derivating you class from an IObserver abstract class: — Client cl …
2
votes
2answers
57 views

What IDE lets me view diffs as highlighting on my code?

EDIT: Primarily, talking about code written in C. Someone sends me a diff to review and I know I can take the "before" code, apply the diff (patch) to get proposed "after" code, a …
8
votes
18answers
482 views

Tips to keep focused during code reviews

I often get sent to sites where I need to do a code review of a system I am not involved in, and once reviewed won't be involved in again. I spend time during the usual tool tests …
0
votes
1answer
12 views

How to add insert-comment feature to any Windows text (code) editor

I want to write a Windows add-on or application that adds the following function to any Windows text (code) editor: I select one or more lines of code in the editor (existing fun …

1 2 3 4 5 20 next
15 30 50 per page