Visual Studio中的C,C++,C#

iDotNetSpace發表於2009-02-17

Visual Studio除了開發.NET程式外,也可以很好的支援C,C++程式碼,使用其智慧感智,除錯等方便性。本示例使用VS2005,用三種語言完成一個求兩數之合的例子。

C程式

  • 新建一個C++的Win32的控制檯應用程式
  • 新增原始檔,選擇C++程式碼,檔案後輟名輸入.c
  • 專案屬性 -> 配置屬性 -> C/C++ -> 高階,"編譯為" 選擇 "編譯為 C 程式碼(/TC)"
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtint GetSum(int a,int b)
{
    
return a+b;
}

void main()
{
    printf(
"這是一個標準C程式!\n");
    printf(
"the sum is %d\n",GetSum(6,9));
}

 

C++程式

  • 新建一個C++的Win32的控制檯應用程式
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gt#include <iostream>
using namespace std;

class sumc
{
public:
    
int a;
    
int b;

    
int getsum()
    {
        
return a+b;
    }
};

int main()
{
    cout
<<"這是一個標準C++程式!"<<endl;
    sumc obj;
    obj.a
=9;
    obj.b
=6;
    cout
<<"the sum is "<<obj.getsum()<<endl;
}

 

C#程式

  • 新建一個C#的控制檯應用程式
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

--&gtusing System;
using System.Collections.Generic;
using System.Text;

namespace CSharp
{
    
class Program
    {
        
static void Main(string[] args)
        {
            Console.WriteLine(
"這是一個C#程式!");
            sumc obj 
= new sumc();
            Console.WriteLine(
"the sum is " + obj.getsum(96));
        }
    }
    
class sumc
    {
        
public int getsum(int a, int b)
        {
            
return a + b;
        }
    }
}

 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/12639172/viewspace-553562/,如需轉載,請註明出處,否則將追究法律責任。

相關文章