Time of Update: 2018-08-08
一、this指標1、C++程式到C程式的翻譯class CCar { struct CCar { public: int price; int price; }; void SetPrice(int p); void SetPrice(struct CCar * this,int p){};
Time of Update: 2018-08-08
C++相對於C語言,大大增強了對字串的支援,除了可以使用C風格的字串,還可以使用內建的資料類型string,string類處理起來字串因為函數的封裝就顯得特別方便,下面我們統計一下string類的函數首先,想調用string類先包含其標頭檔#include <string>string s1;//變數s1隻是定義但沒有初始化,所以其預設值為""即Null 字元串string s2="Hello World!";//變數s2在定義時同時被初始化/
Time of Update: 2015-05-25
標籤:c# winfrom 增刪改查using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Data.OleDb;using
Time of Update: 2015-03-12
標籤:網站開發 微軟 課程 c# mvc 最新《微軟C#6.0語言OOP物件導向編程》《微軟ASP.NET\MVC56網站開發》《微軟Web服務\WCF\Web API3.0課程視頻》下載 下載連結:http://pan.baidu.com/s/1bnjJQnd 密碼:36ji650) this.width=
Time of Update: 2015-07-30
標籤:引用:using System.Net.Mail;public class EmailHelper { public static bool SendEmail(string title, string body, string address) { try { MailAddress from = new MailAddress("[
Time of Update: 2015-07-23
標籤:C#6.0新特性怎麼用系列文章Visual Studio
Time of Update: 2015-03-19
標籤:求逆序數,快排 public static void acm1007(int a, string[] c) { Dictionary<int, string> dic = new Dictionary<int, string>(); int[] i = new int[a]; var j = 0; foreach (var item in c)
Time of Update: 2015-03-02
標籤:一、章節複習: 迴圈。反覆執行某段語句一種文法形式。 1.基本文法: for( 初始條件 ; 迴圈條件 ; 狀態的改變 ) { 迴圈體 } 迴圈的四要素。 迴圈的執行過程。初始條件--迴圈條件--迴圈體--狀態改變--迴圈條件--。。。。。 案例:1.列印10您好。2.顯示1-100的數(所有的數,奇數,偶數)。3.顯示ASCII碼。 2.迴圈的嵌套。 for( ...;... ; ...) { for(...;...;...) { } }
Time of Update: 2015-02-03
標籤:c#wpf binding 中的pat c#wpf <TextBox x:Name="txt1" /><TextBlock x:Name="txt2" Text="{Binding Path=Text, ElementName=txt1}" /> //綁定的是名為txt1的
Time of Update: 2015-02-02
標籤: 一句話總結:協變讓一個粗粒度介面(或委託)可以接收一個更加具體的介面(或委託)作為參數(或傳回值);逆變讓一個介面(或委託)的參數類型(或傳回值)類型更加具體化,也就是參數類型更強,更明確。 通常,協變型別參數可用作委託的傳回型別,而逆變型別參數可用作參數類型。對於介面,協變型別參數可用作介面的方法的傳回型別,而逆變型別參數可用作介面的方法的參數類型。協變我們先來看下面一個來自MSDN的例子:01 // 協變02 IEnumerable<string> strings =
Time of Update: 2015-02-04
標籤:1.簡單調用外部程式檔案(exe檔案,批處理等),只需下面一行代碼即可System.Diagnostics.Process.Start(“應用程式檔案全路徑”);2.如果要等待調用外部程式執行完畢才執行下面代碼,只需要在後面加上WaitForExit()方法System.Diagnostics.Process.Start(應用程式檔案全路徑).WaitForExit();3.另一種方法:使用執行個體化方法不使用靜態方法1 Process process =
Time of Update: 2015-01-24
標籤:用C#Winform寫個簡單的批量清空檔案內容和刪除檔案的小工具本文介紹這個簡單得不能再簡單的小項目。做這個項目,有以下目的。1 當然是做個能用的工具2 學習使用Github 關於用VS2013建立一個項目並添加到Github的教程,請參考(http://www.admin10000.com/document/4004.html)。簡單來說,就是先用VS建立項目;然後在Github網站上建立一個Respo(本項目的代碼託管項目),記下(https://*.gi
Time of Update: 2015-01-15
標籤:關聯式資料庫 技術 通用 開發 講師 課程講師:風舞煙課程分類:.NET架構適合人群:初級課時數量:19課時更新程度:完成服務類型:C類(普通服務類課程)用到技術:FluentData涉及項目:FluentData輕量級需要更多相關資料可以聯絡 Q2748165793課程介紹3.1 關於ORM一、什麼是ORM &
Time of Update: 2015-01-09
標籤: TcpSend視窗用於發送訊息,另外寫一個用於接收訊息的應用程式,訊息接受到以後,必須要關閉接收訊息的視窗,才能在接收新的訊息,不知道怎麼能解決這個問題。原始碼:發送訊息的視窗代碼 using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using
Time of Update: 2014-11-06
標籤:winform style blog http io color ar 使用 for 1.建立一個Windows表單應用程式 2.添加檔案夾及圖片資源檔案夾圖片(folder.p
Time of Update: 2014-09-10
標籤:winform style blog http color os 使用 ar for 最近在做一個圖片瀏覽的工具, 需要在PictureBox中顯示影像檔, 包括gif播放。
Time of Update: 2014-07-04
標籤:winform style blog http 使用 strong 想要實現如下布局,可以通過設定控制項的Dock屬性達到效果1.拖放一個panel控制項一個label控制項(放在panel中)和一個treeView控制項到TestForm中2.設定panel的Dock屬性為Top(設定B
Time of Update: 2014-06-27
標籤:winform style blog http tar color 方法一:由於產生的exe檔案在bin\debug目錄下,可以使用向上尋找目錄的方式擷取要讀取的xml檔案string haarXmlPath =
Time of Update: 2014-06-02
標籤:winform c style class blog code private void btnOpenFileDialog_Click(object sender, EventArgs e) { OpenFileDialog oFD = new
Time of Update: 2018-12-05
本人就最近潛心研究的三種語言調用Excel檔案呈現給大家.微軟的Excel在某一些小軟體上確實比較有用處,比如匯出資料做報表但程式設計語言要與應該程式串連,必須涉及到com組件,就offiice2000/office xp/office 2003給大家介紹這幾種com在VB中調Excel2000/xp有一個*.ole檔案,2000是9.0.其他類推,可到了2003就沒了這個嵌入檔案,沒有研究在VB中調用Excel