登录
首页 » C++ » f2dot-0.1.2.tar

f2dot-0.1.2.tar

于 2016-04-05 发布 文件大小:48KB
0 71
下载积分: 1 下载次数: 1

代码说明:

  ForSyDe project model plotter

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • cmake-3.14.6-win64-x64
    说明:  cmake+window,用于cmake生成window代码。(cmake+window. Generating windows code for cmake.)
    2020-06-17 08:20:02下载
    积分:1
  • tongxunlu
    通讯录系统,有导入并保存数据的功能,还有增删查改(And import in the address book system, and the function of the data, and add or delete check instead)
    2016-06-20 21:17:25下载
    积分:1
  • testallocator
    模拟c++在使用容器时的内存分配,平台为vs(Simulate the memory allocation of c++ when using containers. The platform is vs.)
    2020-06-17 18:00:02下载
    积分:1
  • GUIAlignment
    说明:  Text box validation for validation of numbers, symbols, etc.
    2020-06-24 05:40:02下载
    积分:1
  • Test_FPU_RFFTF32
    DSP 2833x的实数快速傅里叶变换源程序(Real DSP 2833x Fast Fourier Transform of the source)
    2014-07-18 18:00:18下载
    积分:1
  • BitCloud_SAMR21_3_2_0
    atmel zigbee开源框架源码。该源码目前在官网已经关闭(atmel zigbee open source framework source code)
    2018-03-29 10:11:21下载
    积分:1
  • modeling-our-world
    《为我们的世界建模》(Modeling Our World)高清版的电子文档,很好的GIS学习教材,很值得珍藏和学习,对深入理解GIS很有好处。(Modeling Our World high-definition version of the electronic document, a good GIS learning materials, it is worth collecting and learning, in-depth understanding of GIS is very good.)
    2011-08-02 10:42:26下载
    积分:1
  • 提取应用序ICON图标例子(得到exe图标并保存png)
    提取应用程序ICON图标例子(得到exe图标并保存png)
    2015-06-29下载
    积分:1
  • MeteoMarker
    采用SHP文件组织的气象图形标绘程序,地图分球面和平面两种方式,可以标绘点、线、面等气象图形,可以设置颜色、线宽、填充色等多种样式。(SHP files using graphical meteorological organizations plotting procedures, sub-spherical and planar map in two ways, you can plot point, line, surface, such as weather graphics, you can set color, line width, fill color and many other styles.)
    2009-03-29 18:47:09下载
    积分:1
  • c# 扫描IP Http Header
    c# 扫描IP Http Headerusing 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.Threading;using System.IO;namespace HScan{ public partial class Form1 : Form { int _currentThreads = 0; int _maxThreads = 100; Thread main = null; Thread mt = null; List threads = new List(); public Form1() { InitializeComponent(); Control.CheckForIllegalCrossThreadCalls = false; } private void btnStart_Click(object sender, EventArgs e) { btnStart.Enabled = false; if (txtStart.Text.Trim() == "") { MessageBox.Show("起始IP不能为空."); return; } if (txtEnd.Text.Trim() == "") { MessageBox.Show("结束IP不能为空."); return; } int ts = Convert.ToInt32(txtThreads.Text); _maxThreads = ts; string startIp = txtStart.Text; string endIp = txtEnd.Text; TParameter tp=new TParameter(); tp.StartIp=startIp; tp.EndIp=endIp; tp.ThreadCount=ts; main = new Thread(new ParameterizedThreadStart(StartMe)); main.Start(tp); } protected void ThreadManage() { Thread c=null; while (true) { System.Object lockThis = new System.Object(); lock (lockThis) { for (int i = 0; i < threads.Count; i ) { if (threads[i] != null && !threads[i].IsAlive) { c = threads[i]; break; } } if (c != null) { threads.Remove(c); } } } } protected void StartMe(object ob) { mt = new Thread(new ThreadStart(ThreadManage)); mt.Start(); TParameter p = ob as TParameter; string curIp = p.StartIp; while (true) { for (int i = 0; i < _maxThreads; i ) { if (curIp != "") { if (_currentThreads >= _maxThreads) break; System.Object lockThis = new System.Object(); lock (lockThis) { _currentThreads ; if (_currentThreads > _maxThreads) _currentThreads = _maxThreads; string tip = curIp; Thread t = new Thread(new ParameterizedThreadStart(Run)); t.Start(tip); threads.Add(t); curIp = IPUtility.getLastIp(curIp, p.EndIp, 1); } } else { break; } } } } protected void Run(object ob) { string ip = ob.ToString(); SocketGetHead h = new SocketGetHead(); string ret = h.GetHtml(ip, 80); if (ret.IndexOf("DVRDVS-Webs") > 0) { ListViewItem item = new ListViewItem(); item.SubItems[0].Text = (listView1.Items.Count 1).ToString(); ListViewItem.ListViewSubItem lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = ip; item.SubItems.Add(lvSubItem); lvSubItem = new ListViewItem.ListViewSubItem(); lvSubItem.Text = "DVRDVS-Webs"; item.SubItems.Add(lvSubItem); listView1.Items.Add(item); } System.Object lockThis = new System.Object(); lock(lockThis) { lblCurIp.Text = ip; _currentThreads--; if (_currentThreads < 0) _currentThreads = 0; } } private void tsmCopy_Click(object sender, EventArgs e) { if (listView1.SelectedItems.Count > 0) { string ip = listView1.SelectedItems[0].SubItems[1].Text; Clipboard.SetText(ip); } } private void tsmExport_Click(object sender, EventArgs e) { StreamWriter writer = new StreamWriter(AppDomain.CurrentDomain.BaseDirectory "\export.txt",true); foreach (ListViewItem item in listView1.Items) { string ip=item.SubItems[1].Text; writer.WriteLine(ip); writer.Flush(); } writer.Flush(); writer.Close(); MessageBox.Show("导出成功!"); } private void Form1_FormClosing(object sender, FormClosingEventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } Thread.Sleep(5000); } private void btnStop_Click(object sender, EventArgs e) { try { if (mt != null) { mt.Interrupt(); mt.Abort(); } foreach (Thread t in threads) { t.Interrupt(); t.Abort(); } if (main != null) { main.Interrupt(); main.Abort(); } } catch { } btnStart.Enabled = true; } }}
    2014-06-23下载
    积分:1
  • 696524资源总数
  • 103939会员总数
  • 12今日下载