Thread: Has anyone ever used a refactoring tool?

  1. #1
    Registered User camel-man's Avatar
    Join Date
    Jan 2011
    Location
    Under the moon
    Posts
    693

    Has anyone ever used a refactoring tool?

    I am just wondering if anyone here uses any refactoring tool and how efficient is it really? Do you recommend?
    Code:
    int get_random_number(void)
    {
       return 4; //chosen by fair dice roll.
                 //guaranteed to be random
    }

  2. #2
    [](){}(); manasij7479's Avatar
    Join Date
    Feb 2011
    Location
    *nullptr
    Posts
    2,657
    What exactly do you want to do?
    For replacing identifiers through your project any modern IDE will have inbuilt support.
    If you want something very specific, writing your own tool is rather easy nowadays.
    Clang has a Rewriter library that enables you to be very flexible without too much effort.

  3. #3
    Registered User MutantJohn's Avatar
    Join Date
    Feb 2013
    Posts
    2,665
    manasij, I love how the little description below your username is an IIFE XD

Popular pages Recent additions subscribe to a feed

Similar Threads

  1. what 's the tool i should use
    By runeveryday in forum C Programming
    Replies: 5
    Last Post: 07-28-2010, 08:40 AM
  2. Refactoring browsers for C and C++
    By dwks in forum Tech Board
    Replies: 22
    Last Post: 11-25-2007, 06:23 PM
  3. Refactoring
    By kawshik in forum C Programming
    Replies: 13
    Last Post: 06-28-2007, 03:52 AM
  4. C++ Refactoring Tools
    By SpaceCadet in forum C++ Programming
    Replies: 3
    Last Post: 10-11-2006, 06:03 PM

Tags for this Thread