Translate
Appearance
Text
This page always uses small font size
Width
AllKdevelop4/Manual/Meet KDevelop
Translate to 湘語
Translation of the wiki page Kdevelop4/Manual/Meet KDevelop from English (en) to 湘语 (hsn)
This tool does not work without JavaScript. JavaScript is disabled, failed to work, or this browser is unsupported.
Translations:Kdevelop4/Manual/Meet KDevelop/Page display title/hsn
Kdevelop4/Manual/What is KDevelop?
You need translation rights to translate messages.Get permission
Translations:Kdevelop4/Manual/Meet KDevelop/1/hsn
==What is KDevelop?==
You need translation rights to translate messages.Get permission
[http://www.KDevelop.org KDevelop] is a modern integrated development environment (IDE) for C++ (and other languages) that is one of many [http://www.kde.org/applications/ KDE applications]. As such it runs on Linux (even if you run one of the other desktops, such as GNOME) but it is also available for most other variants of Unix and for Windows as well.
'''KDevelop''' offers all amenities of modern IDEs. For large projects and applications, the most important feature is that '''KDevelop''' ''understands C++'': it parses the entire source base and remembers which classes have which member functions, where variables are defined, what their types are, and many other things about your code. For example, let's say one of your project's header files declares a class
{{Input|<syntaxhighlight lang="cpp">
class Car {
// ...
public:
std::string get_color () const;
};
</syntaxhighlight>}}
{{Input|<syntaxhighlight lang="cpp">
Car my_ride;
// ...do something with this variable...
std::string color = my_ride.ge
</syntaxhighlight>}}
it will have remembered that <code>my_ride</code> in the last line is a variable of type <code>Car</code> and offer you to complete <code>ge</code> as <code>get_color()</code> since this is the only member function of the <code>Car</code> class that starts like this. Instead of continuing to type you just hit <keycap>Enter</keycap> to get the full word; this saves typing, avoids typos, and doesn't require you to remember the exact names of the hundreds or thousands of functions and classes that make up large projects.
<!--}}-->{{Input|<syntaxhighlight lang="cpp">
double foo ()
{
double var = my_func();
return var * var;
}
double bar ()
{
double var = my_func();
return var * var * var;
}
</syntaxhighlight>}}<!--{{-->
If you hover the mouse over the symbol <code>var</code> in function <code>bar</code> you get the option to see all uses of this symbol. Clicking on it will only show you the uses of this variable in function <code>bar</code> because '''KDevelop''' understands that the variable <code>var</code> in function <code>foo</code> has nothing to do with it. Similarly, right clicking on the variable name allows you to rename the variable; doing so will only touch the variable in <code>bar</code> but not the one with the same name in <code>foo</code>.
But '''KDevelop''' is not just an intelligent code editor; there are other things '''KDevelop''' does well. Obviously, it highlights the source code in different colors; it has a customizable indenter; it has an integrated interface to the GNU debugger '''gdb'''; it can show you the documentation for a function if you hover the mouse over a use of this function; it can deal with different kinds of build environments and compilers (e.g. with '''make''' and '''cmake'''-based project), and many other neat things that are discussed in this manual.
{{Prevnext2
| nextpage=Special:MyLanguage/KDevelop4/Manual/Sessions_and_projects
| nexttext=Sessions and projects
| index=Special:myLanguage/KDevelop4/Manual | indextext=Back to Menu
}}
Loading messages...
0% translated, 0% reviewed
Retrieved from "https://userbase.kde.org/Special:Translate"