Time of Update: 2015-03-03
標籤: 1 namespace ConsoleApplication8 2 { 3 class Program 4 { 5 static void Main(string[] args) 6 { 7 Console.WriteLine("我可以幫你比較三個數位大小,請輸入第一個數字"); 8 int noone = Convert.ToInt32(Console.ReadLine()); 9
Time of Update: 2015-03-03
標籤:過完年來,準備找份新工作,雖然手裡的工作不錯,但樹挪死,人挪活。咱不能一直在一個坑裡生活一輩子,外面的世界畢竟是很美好的。為了能正常的找到自己中意的工作,最近是將所有的基礎知識拿出來複習了一次。僅作記錄,自勉,各位大神不要噴,隨意看看就好了。以下知識點,均摘自面試過程中遇到的題1.try{}
Time of Update: 2015-03-03
標籤:c# datagridview 由於時間原因,再加之自己懶惰!好久沒寫部落格了,今天寫一篇關於datagridview中如何?時間控制項的文章,算是繼續自己的記錄的習慣!
Time of Update: 2015-03-03
標籤:1.日期毫秒轉換為標準的C#日期格式//使用時,先將秒Convert.ToInt64,返回格式2015-2-10 14:03:33public DateTime JavaTimeToC(long ltime){ long time_JAVA_Long = ltime;//java長整型日期,毫秒為單位 DateTime dt_1970 = new DateTime(1970, 1, 1); long tricks_1970 = dt_1970.Ticks;//1970年1
Time of Update: 2015-03-03
標籤: public class SocketAsyncEventArgsPool{ //已使用記錄 private List<Int32> usedRecord; //未使用記錄 private List<Int32> unUsedRecord; //池子 private List<SocketAsyncEventArgsMetadata> pool; /
Time of Update: 2015-03-03
標籤:c# eval js中有一個方法eval,能夠隨時執行使用者編寫的代碼。例如:js中的代碼:eval("alert('hello world');"); 將會彈出一個寫有hello
Time of Update: 2015-03-03
標籤:登陸介面有使用者名稱、密碼輸入框,一個’記住帳號密碼‘的複選框。1.登入時,勾選‘記住帳號密碼‘複選框,則會把使用者名稱密碼儲存在用戶端cookie裡,儲存時間為最大值(直到使用者清除瀏覽器緩衝或者取消勾選’記住帳號密碼‘複選框);2.登入時,取消勾選‘記住帳號密碼‘複選框,會清除cookie儲存的使用者名稱密碼。3.登入時,當修改了使用者名稱密碼,會判斷cookie儲存的值是否與輸入的相同,如
Time of Update: 2015-03-03
標籤:using System;using System.Collections.Generic;namespace Algorithms{ public class PermutationAndCombination<T> { ///
Time of Update: 2015-03-03
標籤:說起靜態類,你可能會聯想到執行個體類。這兩者並不難區分,前者(靜態類)只在記憶體中建立一個,而後者(執行個體類)則是每次執行個體化後,就會再記憶體建立一份。今天來簡單聊一下靜態類的理解。代碼情景: class Program{ static void Main(string[] args) { Person p1 = new Person(); p1.Name = "zs";
Time of Update: 2015-03-03
標籤:windows 圖片 c# 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
Time of Update: 2015-03-03
標籤:進位轉換:二進位,八進位,十進位,十六進位。(一)二進位轉十進位:1.寫2 2.標指數,從右向左,從0開始依次標記3.乘係數,一一對應。4.相加。例:位元1101轉十進位數*1.2 2 2 22.2^3 2^2 2^1 2^03.1*2^3 1*2^2 0*2^1 1*2^04.1*2^3+1*2^2+0*2^1+1*2^0=13(二)十進位轉二進位:除2
Time of Update: 2015-03-03
標籤://列印三角菱形 Console.WriteLine("請輸入一個數:"); int x =
Time of Update: 2015-03-03
標籤:1.手動dll注入#include<stdlib.h>#include<windows.h>// _declspec(dllexport) 外部可以調用,沒有不可調用_declspec(dllexport) void goA(){while (1){MessageBoxA(0, "你在與間諜聊天", "請注意安全", 0);}}編譯成dll後,使用dllinject注入某個進程。2.兩個變數交換 int a=10;int b=20;//第一種方式int
Time of Update: 2015-03-03
標籤:1.宏(macro)1.1定義宏#define macro bodyexample:#define PI 3.14 //object-like macro#define SQUARE(x) ((x)*(x)) //function-like macro1.2前置處理器不進行計算,而只進行字串替換。比如,對於x*x用x+2替換x則會得到x+2*x+2.1.3#運算子如果x是一個宏參量,那麼#x可以把參數名轉化為相應字串。該過程稱為字串化(stringizing)。#include
Time of Update: 2015-03-03
標籤:在複製字串的時候,出現如下難以理解之處:測試程式的目的是定義一個指標指向字串常量,並且將這個字串常量複製到另一個經過記憶體配置的字串指標。正常理解範圍(1):#include <stdio.h>#include <string.h>#include <malloc.h>int main(void){ char* p1 = "abcdefg"; char* p2 =
Time of Update: 2015-03-03
標籤:c編譯器 語義檢查 字串 4.2.3
Time of Update: 2015-03-03
標籤:A題:找出字串中是否出現了26個英文字母,不區分大小寫#include <cstdio>#include <cstring>#include <algorithm>using namespace std ;char str[200] ;int a[30] , b[30] ;int main(){ int n , i ; scanf("%d", &n) ; scanf("%s", str)
Time of Update: 2015-03-03
標籤:1.DOS中有無@符號的區別 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h>#include<stdlib.h>void main(){ int num = 5;char str[50];//有@符號時隱式執行,只有結果沒有過程sprintf(str,"for /l %%i in (1,1,%d) do @calc",num);//無@時顯示執行,有過程有結果//sprintf(str, "for /l
Time of Update: 2015-03-03
標籤:client.c:996: error: a label can only be part of a statement and a declaration is not a statementswitch(a){case 1:............................................................break;case 2:break;} 在GCC下編譯會出現如下錯誤:error: a label can only be part of a
Time of Update: 2015-03-03
標籤:靜態區:儲存自動全域變數和static變數(包括static全域和局部變數)。靜態區的內容在整個程式的生命週期內都存在,由編譯器在編譯的時候分配。棧(stack):儲存局部變數。棧上的內容只在函數範圍記憶體在,當函數運行結束,這些內容自動被銷毀,其特點是效率高,但可操作空間大小有限。堆(heap):由malloc系列函數或new操作符分配的記憶體。其生命週期由free或delete決定。在沒有釋放之前一直存在,直到程式結束。其特點是使用靈活,空間範圍大,易出錯。C Language