溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

ASP.NET基礎(chǔ)語(yǔ)法有哪些

發(fā)布時(shí)間:2021-07-15 18:38:51 來(lái)源:億速云 閱讀:198 作者:chen 欄目:編程語(yǔ)言

這篇文章主要介紹“ASP.NET基礎(chǔ)語(yǔ)法有哪些”,在日常操作中,相信很多人在ASP.NET基礎(chǔ)語(yǔ)法有哪些問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”ASP.NET基礎(chǔ)語(yǔ)法有哪些”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!

變量聲明

int x;   String s;   String s1, s2;   Object o;   Object obj = new Object();   public String name;

語(yǔ)句

Response.Write("foo");

注釋

// 這是單行注釋   /*   這是   多   行   注釋*/

訪問(wèn)索引屬性

String s = Request.QueryString["Name"];   String value = Request.Cookies["key"];

聲明索引屬性

// Default Indexed Property   public String this[String name] {   get {   return (String) lookuptable[name];   }   }

聲明簡(jiǎn)單屬性

public String name {   get {   ...   return ...;   }   set {   ... = value;   }   }

聲明和使用枚舉

// Declare the Enumeration   public enum MessageSize {   Small = 0,   Medium = 1,   Large = 2   }   // Create a Field or Property   public MessageSize msgsize;   // Assign to the property using the Enumeration values   msgsize = Small;

遍歷集合

foreach ( String s in coll ) {   ...   }

聲明和使用方法

// Declare a void return function   void voidfunction() {   ...   }   // Declare a function that returns a value   String stringfunction() {   ...   return (String) val;   }   // Declare a function that takes and returns values   String parmfunction(String a, String b) {   ...   return (String) (a + b);   }   // Use the Functions   voidfunction();   String s1 = stringfunction();   String s2 = parmfunction("Hello", "World!");

定制屬性

// Stand-alone attribute   [STAThread]   // Attribute with parameters   [DllImport("ADVAPI32.DLL")]   // Attribute with named parameters   [DllImport("KERNEL32.DLL", CharSet=CharSet.Auto)]

數(shù)組

String[] a = new String[3];  a[0] = "1";  a[1] = "2";  a[2] = "3";  String[][] a = new String[3][3];  a[0][0] = "1";  a[1][0] = "2";  a[2][0] = "3";

初始化

String s = "Hello World";  int i = 1;  double[] a = { 3.00, 4.00, 5.00 };

ASP.NET基礎(chǔ)語(yǔ)法:語(yǔ)句

If 語(yǔ)句

if (Request.QueryString != null) {  ...  }

Case 語(yǔ)句

switch (FirstName) {  case "John" :  ...  break;  case "Paul" :  ...  break;  case "Ringo" :  ...  break;  default:  ...  break;  }

For 循環(huán)

for (int i=0; i<3; i++)  a(i) = "test";

While 循環(huán)

int i = 0;  while (i<3) {  Console.WriteLine(i.ToString());  i += 1;  }

異常處理

try {  // Code that throws exceptions  } catch(OverflowException e) {  // Catch a specific exception  } catch(Exception e) {  // Catch the generic exceptions  } finally {  // Execute some cleanup code  }

字符串連接

// Using Strings  String s1;  String s2 = "hello";  s2 += " world";  s1 = s2 + " !!!";  // Using StringBuilder class for performance  StringBuilder s3 = new StringBuilder();  s3.Append("hello");  s3.Append(" world");  s3.Append(" !!!");

事件處理委派

void MyButton_Click(Object sender,  EventArgs E) {  ...  }

聲明事件

// Create a public event  public event EventHandler MyEvent;  // Create a method for firing the event  protected void OnMyEvent(EventArgs e) {  MyEvent(this, e);  }

向事件增加或移除事件處理

Control.Change += new EventHandler(this.ChangeEventHandler);  Control.Change -= new EventHandler(this.ChangeEventHandler);

構(gòu)造

MyObject obj = (MyObject)Session["Some Value"];  IMyObject iObj = obj;

轉(zhuǎn)換

int i = 3;  String s = i.ToString();  double d = Double.Parse(s);

帶有繼承的類定義

using System;  namespace MySpace {  public class Foo : Bar {  int x;  public Foo() { x = 4; }  public void Add(int x) { this.x += x; }  override public int GetNum() { return x; }  }  }  // csc /out:librarycs.dll /t:library  // library.cs

實(shí)現(xiàn)接口

public class MyClass : IEnumerable {  ...  IEnumerator IEnumerable.GetEnumerator() {  ...  }  }

帶有Main方法的類定義

using System;  public class ConsoleCS {  public ConsoleCS() {  Console.WriteLine("Object Created");  }  public static void Main (String[] args) {  Console.WriteLine("Hello World");  ConsoleCS ccs = new ConsoleCS();  }  }  // csc /out:consolecs.exe /t:exe console.cs

標(biāo)準(zhǔn)模板

using System;  public class Module {  public static void Main (String[] args) {  Console.WriteLine("Hello World");  }  }  // csc /out:consolecs.exe /t:exe console.cs

到此,關(guān)于“ASP.NET基礎(chǔ)語(yǔ)法有哪些”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI