IT SOLUTIONS
Your TECHNOLOGY partner! 
-Collapse +Expand
C++
Search C++ Group:

Advanced
-Collapse +Expand C++ To/From
To/FromCODEGuides
-Collapse +Expand C++ Study Test
PRESTWOODCERTIFIED
-Collapse +Expand C++ Store
PRESTWOODSTORE

Prestwood eMagazine

June Edition
Subscribe now! It's Free!
Enter your email:

   ► KB ►► ProgrammingC++   All Groups   Print This   

C++ Most Read KB Posts

Page Contents


Most Read KB Articles Since 3/28/2008

C++ Group

  KB Article    

Mike Prestwood
1. C++/CLI Constants (const or literal)

C++/CLI supports the const and static const keywords of standard C++ as well as the new literal keyword. A literal is equivalent to static const in standard C++ and Microsoft's documentation recommends to replace static const with the new literal keyword because a leteral is available in metadata; a static const variable is not available in metadata to other compilers.

You can use static const within the class declaration or locally within a method. However, literal is only valid in the class declaration section and const is only valid within a method.

Posted to KB Topic: C++/CLI Language Basics
53 months ago, and updated 53 months ago

Code
Nothing New Since Your Last Visit  
6182
Hits

Mike Prestwood
2. C++/CLI Empty String Check (String.IsNullOrEmpty)

The .Net framework offers a static method in the string class: String.IsNullOrEmpty.

Posted to KB Topic: C++
45 months ago

Code
Nothing New Since Your Last Visit
5478
Hits

Mike Prestwood
3. C Family Unary Operators An operation with only one operand (a single input) such as ++X and --Y.
Posted to KB Topic: Classic C Language
6 years ago

Definition
Nothing New Since Your Last Visit
4984
Hits

Mike Prestwood
4. Use ++ and -- In C and C++, it is better to only use unary operators for incrementing and decrementing variables because they produce fewer instructions and run faster.
Posted to KB Topic: Classic C Language
6 years ago, and updated 56 months ago

Tip
Nothing New Since Your Last Visit
4963
Hits

Mike Prestwood
5. C++ Comments How do you comment code in C++?
Posted to KB Topic: Standard C++
10 years ago, and updated 5 years ago

FAQ
Nothing New Since Your Last Visit
4175
Hits

Evan Egalite
6. C++: The Standard Template Library Generic Algorithms This article by Evan Egalite was first published in the August 2002 Prestwood eMagazine.
Posted to KB Topic: Standard C++
11 years ago, and updated 5 years ago

Article
Nothing New Since Your Last Visit
4159
Hits

Mike Prestwood
7. C++ Custom Routines

C++ is a hybrid language and as such offers global functions and class methods. A function must come before it's usage or you can prototype the function.

Posted to KB Topic: C++ Language Basics
55 months ago, and updated 54 months ago

Code

KB Post
Nothing New Since Your Last Visit
3899
Hits

Mike Prestwood
8. Using cin and cout Using cin and cout in C++ to output values.
Posted to KB Topic: Standard C++
10 years ago, and updated 54 months ago

KB Post
Nothing New Since Your Last Visit
3826
Hits

Mike Prestwood
9. C++/CLI String Concatenation (+)

C++/CLI performs implicit casting of numbers to strings. To concatenate two strings, a string to an integer, or a string to a floating point number, use the + operator. For example, to convert a floating point number to a string just concatenate an empty string to the number as in "" + 3.2.

Posted to KB Topic: C++/CLI Language Basics
52 months ago

Code
Nothing New Since Your Last Visit  
3598
Hits

Mike Prestwood
10. C++ Static Members (static)

C++ supports static methods and static member fields using the static keyword.

Posted to KB Topic: C++ OOP
53 months ago, and updated 53 months ago

Code
Nothing New Since Your Last Visit
3376
Hits



Most Read by Members

C++ Group

  KB Article    

Mike Prestwood
1. C++ Inlining (inline)

Use the inline keyword to tell the compiler to inline a routine.

Posted to KB Topic: C++ Language Details
52 months ago
(1 Comments , last by alvitar )

Code
Nothing New Since Your Last Visit
2939
Hits

Mike Prestwood
2. C++/CLI String Concatenation (+)

C++/CLI performs implicit casting of numbers to strings. To concatenate two strings, a string to an integer, or a string to a floating point number, use the + operator. For example, to convert a floating point number to a string just concatenate an empty string to the number as in "" + 3.2.

Posted to KB Topic: C++/CLI Language Basics
52 months ago

Code
Nothing New Since Your Last Visit  
3598
Hits

Mike Prestwood
3. C++ If Statement (if..else if..else)

Same as standard C.

Posted to KB Topic: C++ Language Basics
52 months ago
(2 Comments , last by mprestwood )

Code
Nothing New Since Your Last Visit
3333
Hits

Mike Prestwood
4. C++ Custom Routines

C++ is a hybrid language and as such offers global functions and class methods. A function must come before it's usage or you can prototype the function.

Posted to KB Topic: C++ Language Basics
55 months ago, and updated 54 months ago

Code

KB Post
Nothing New Since Your Last Visit
3899
Hits

Mike Prestwood
5. Use ++ and -- In C and C++, it is better to only use unary operators for incrementing and decrementing variables because they produce fewer instructions and run faster.
Posted to KB Topic: Classic C Language
6 years ago, and updated 56 months ago

Tip
Nothing New Since Your Last Visit
4963
Hits

Mike Prestwood
6. C++ Report Tools Overview

Use any report writer you are comfortable with. C++Builder 2009 comes bundled with Rave Reports and Crystal Reports remains popular for Visual C++.

Posted to KB Topic: Standard C++
53 months ago

Code
Nothing New Since Your Last Visit
2696
Hits

Mike Prestwood
7. C++ Inheritance (: public ParentClass)

In C++ you use the class keyword to signify a class and a colon followed by the parent class name for inheritance.

Posted to KB Topic: C++ OOP
55 months ago, and updated 53 months ago

Code
Nothing New Since Your Last Visit
2853
Hits

Mike Prestwood
8. C++Builder 2009 Ships! Embarcadero Technologies unveils C++Builder 2009! The next generation of the popular CodeGear rapid application development (RAD) tools for Windows native code development.
Posted to KB Topic: C++Builder Specific
56 months ago, and updated 56 months ago

News
Nothing New Since Your Last Visit
1936
Hits

Mike Prestwood
9. C++/CLI Logical Operators

Same as C++ and Java. C# logical operators:

& and, as in this and that No Short Circuit
&& and, as in this and that short circuits
| or, as in this or that No Short Circuit
|| or, as in this or that short circuits
! Not, as in Not This
^ either or, as in this or that but not both

Posted to KB Topic: C++/CLI Language Basics
52 months ago

Code
Nothing New Since Your Last Visit
2859
Hits

Mike Prestwood
10. C++ Deployment Overview

You can use any of the many free and commercially available installation packages.

In Visual Studio.Net, you can create a Setup and Deployment project by using any of the templates available on the New Project dialog (Other Project Types).

C++Builder 2007 and 2009 are bundled with InstallAware Express CodeGear Edition installer.

Posted to KB Topic: C++ Language Basics
52 months ago

Code
Nothing New Since Your Last Visit
2110
Hits
Icon Legend:
Recent or not:
- Recent activity (within last two weeks).
- No activity last two weeks.
 Since your last logged visit:
- New to you or updated since your last visit (sign in now to activate).
- NOT new to you since your last visit (sign in now to activate).
-
  Load Time=less than 1 second.
 
Print This
-
 
Have a question? Need our services? Contact us now.
--Mike Prestwood

Call: 916-726-5675

email: info@prestwood.com


1,112 People Online Now!!  
Online Now: Sign In to see who's online now!  Not a member? Join now. It's free!
Show More...


©1995-2013 PrestwoodBoards  [Security & Privacy]
Professional IT Services: Coding | Websites | Computer Tech