繁体中文
设为首页
加入收藏
当前位置:.Net技术首页 >> 算法/线程 >>
算法/线程
  • [2004-10-01] 初识C#线程
        作者: BUIILDER.COM 使用多线程技术能有效地帮助你实现应用程序的更高性能和更优良的可伸缩性。但在真正运用这项技术的时候务必小心。本文是对线程技术所牵扯的工具和技术问题系列文章的开篇。我首先对线程概念...
  • [2004-10-01] 用VB.NET获得系统进程列表
        Retrieving information on system resources and process information was not possible wihtout API calls in VB6. Calling API functions has its own difficulties. Identifying correct datatypes, Identif...
  • [2004-10-01] 开心,捕捉子线程内异常的例子
        程序很简单,一个form内有一个按钮,点击后弹出一个对话框,点击对话框start按钮后执行新起一个线程执行一个工作类的某个方法,这个方法故意抛出异常,然后在对话框内捕捉到这个异常。 注意,这儿我是用事件来捕...
  • [2004-10-01] The key to multi-threaded Windows Forms UI interaction(ZT)
        Introduction I don't intend for this article to teach multi-threaded programming in .NET, I do want to point out some important things when dealing with multi-threaded programs in a Windows Forms ...
  • [2004-10-01] 使用 Visual Basic .NET 进行多线程编程(转自MSDN)续
        同步线程 同步在多线程编程的非结构化性质与同步处理的结构化次序之间提供了一个折衷的办法。 使用同步技术,可以完成以下操作: 在必须以特定顺序执行任务时,显式控制代码运行的次序。 - 或者 - 当两个线程同...
  • [2004-10-01] VB.NET多线程开发实例(转)
        VB.NET(Visual Basic.NET)是为适应Microsoft .NET框架的需要,对Visual Basic进行了重大改造后的开发工具。它比Visual Basic 6.0功能更强大,更易于使用。其中最重要的变化就是对象继承,在VB.NET中,所有可管...
  • [2004-10-01] 在.Net中监控Processes和Threads(2)
        The Code We use a ListView control in our application to display process information. The InitializeListView method adds column headers, their names and sizes to the ListView control. We'll see t...
  • [2004-10-01] 提供一个:用多线程模拟多用户访问站点情况!
            当时写这个程序是公司要求有个测试环境测试多用户情况,我匆匆忙忙的用了个上午写完后,一测试能用,就交差了,不过后来在多次使用的时候发现了有时候程序回莫名退出,不过由于时间等原...
  • [2004-10-01] thread pool
        Now that we have seen the thread pool classes, let us move to creating the object that will handle our custom project template. This is a simple C# class library project, with a single class that ...
  • [2004-10-01] 在.Net中监控Processes和Threads(1)
        A process is an instance of a running application on a system. A process itself is nothing besides memory address space. Besides the space, a process also owns resources including files, dynamic a...
  • [2004-10-01] Custom Thread Pooling Template
        Custom Thread Pooling Template Now that we have covered the basics of Visual Studio .NET project types and templates, let us look at how we can write our own custom project template that will gene...
  • [2004-10-01] 把昨天写的东西的代码公布出来。哎。。真恶心。
        非要自己写。 算了。。大家自己看看吧。。不过我还是喜欢使用API。嘿嘿 目录选择对话框类 using System; using System.Text; using System.Windows.Forms; using System.Runtime.InteropServices; namespace B...
  • [2004-10-01] C#算法----(二)插入排序
        using System; public class InsertionSorter {   public void Sort(int [] list)   {       for(int i=1;i<list.Length;++i)     &...
  • [2004-10-01] C#算法----(三)希尔排序
        using System; public class ShellSorter {   public void Sort(int [] list)   {       int inc;       for(inc=1;inc<=...
  • [2004-10-01] C#算法-------(四)快速排序
        using System; namespace QuickSorter { public class QuickSorter {   private void Swap(ref int l,ref int r)   {    int s;    s=l;   &nb...
  • [2004-10-01] C#算法----(三)希尔排序 (solarsoft原创)
        朋友们,我最近加紧写C#的一些算法。选择排序,插入算法是我已经推出的。现推出希尔排序.今后,如有时间我将依次推出其它的算法编写。 希尔排序是将组分段,进行插入排序. 对想提高C#语言编程能力的朋友,我们可以互...
  • [2004-10-01] C#算法----(二)插入排序 (solarsoft原创)
        朋友们,我最近加紧写C#的一些算法。选择排序已经推出的。现推出插入算法。 对想提高C#语言编程能力的朋友,我们可以互相探讨一下。 如:下面的程序,并没有实现多态,来,帮它实现一下。 using System; public c...
  • [2004-10-01] 从csdn上看到的一些文章,好象有人转过,再转一次吧——C#算法-----(一)选择排序 (solarsoft原创)
        嗨!朋友们,C#将是未来网络开发的首选语言。本人用了C#开发出选择排序算法。希望能为C#语言的学习者带来一些益处。      不要忘了,学语言要花大力气学数据结构和算法。 using System...
  • [2004-10-01] 恢复URL字符串
        Decodes a string encoded for HTTP transmission and sent to the server in a URL. Overload List URL-decodes a string and returns the decoded string. [Visual Basic] Overloads Public Function UrlDec...
  • [2004-10-01] 是不是这个?
                /// <summary>         /// 贴子列表         /// </summary>...
  • 总数:64    首页 上一页 下一页 尾页 页: 2/4