- 浏览: 204441 次
- 性别:
- 来自: 成都
最新评论
文章列表
ThreadStart中如何带参数(转载)
- 博客分类:
- c#学习
ThreadStart中如何带参数(转载)
threadHand1 = new Thread(()=>
{
threadHand1_Run(timeStart,timeEnd);
});
threadHand1.Start();
or
threadHand1 = new Thread(delegate(){threadHand1_Run(timeStart,timeEnd);});
threadHand1.Start();
WPF快速指导10:WPF中的事件及冒泡事件和隧道事件(预览事件)的区别(转载)
本文摘要:
1:什么是路由事件;
2:中断事件路由;
3:自定义路由事件;
4:为什么需要自定义路由事件;
5:什么是冒泡事件和预览事件(隧道事件);
1:什么是路由事件
WPF中的事件为路由事件,所谓路由事件,MSDN定义如下:
功能定义:路由事件是一种可以针对元素树中的多个侦听器(而不是仅针对引发该事件的对象)调用处理程序的事件。
实现定义:路由事件是一个 CLR 事件,可以由 RoutedEvent 类的实例提供支持并由 Windows Presentation Fo ...
vector学习(转载)
- 博客分类:
- C++学习
vector学习
vector是动态分配内存,随着元素的不断插入,它会按照自身的一套机制不断扩充自身的容量,vector容器的容量增长是按照容器现在容量的一倍进行增长。
begin函数:
函数原型:
iterator begin();
const_iterator begin();
功能:
返回一个当前vector容器中起始元素的迭代器。
end函数:
函数原型:
iterator end();
const_iterator end();
功能:
返回一个当前vector容器中末尾元素的迭代器。
front函数:
函数原型:
reference front();
const_ref ...
wpf的datagrid列选中后改变颜色
<UserControl.Resources>
<Style x:Key="CellStyle" TargetType="{x:Type DataGridCell}">
<Style.Triggers>
<Trigger Property="IsSelected" Value="True">
<Set ...
C# java 有关“字节序”的描述(转载)
BIG-ENDIAN(大字节序、高字节序)
LITTLE-ENDIAN(小字节序、低字节序)
主机字节序
网络字节顺序
JAVA字节序
1.BIG-ENDIAN、LITTLE-ENDIAN跟多字节类型的数据有关的比如int,short,long型,而对单字节数据byte却没有影 响。BIG-ENDIAN就是低位字节排放在内存的低端,高位字节排放在内存的高端。而LITTLE-ENDIAN正好相反。
比如 int a = 0x05060708
在BIG-ENDIAN的情况下存放为:
字节号 0 1 2 3
数据 05 06 07 08
在L ...
C# byte数组常用扩展(转载)
C# byte数组常用扩展应用一:转换为十六进制字符串
public static string ToHex(this byte b)
{
return b.ToString("X2");
}
public static string ToHex(this IEnumerable<byte> bytes)
{
var sb = new StringBuilder();
foreach (byte b in bytes)
sb.Append(b.ToString("X2&q ...
C# byte[]与char[]、string与char[]、byte[] 与 string 互转(转载)
一:
先用Default
System.Text.Encoding.Default.GetString(byte[]);
二:
1. byte array -> char array
Byte[] b=new byte[5]{0x01,0x02,0x03,0x04,0x05};
Char[] c=Encoding.ASCII.GetChars(b);
2. char array -> byte array
view plaincopy to ...
WPF 中设置DataGridTextColumn的文本对齐方式
DataGrid里面存在着像DataGridColumnHeader、DataGrid、DataGridCell等相关控件的样式设置,例如让一个DataGrid里面某一列的控件内容居中显示
<DataGrid Name="datagrid" Grid.Row="2" CanUserResizeRows="False" RowHeaderWidth="0" HorizontalGridLinesBrush="#999" Ve ...
::ReleaseDC(this->GetHWND(), hdc);
C、C++字符串转换到数字的函数(转载)
- 博客分类:
- C++学习
C、C++字符串转换到数字的函数(转载)
C/C++字符串转换到数字的函数
C/C++标准库stdlib.h中提供了字符串到数字的转换。
一、头文件
[cpp] view plaincopyprint?
1. #include <stdlib.h>
二、函数列表
[cpp] view plaincopyprint?
1. int atoi ( const char * str );
2. long int atol ( const char * str );
3. double atof ( const char * str );
4. long int str ...
_CrtCheckMemory
- 博客分类:
- vc学习
#define CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
_ASSERTE( _CrtCheckMemory( ) );
xml回车,tab,空格,换行
- 博客分类:
- C++学习
xml回车,tab,空格,换行
空格 ( )
Tab (	)
回车 (
)
换行 (
)
注意包括分号
C、C++字符串转换到数字的函数
- 博客分类:
- C++学习
C/C++字符串转换到数字的函数
C/C++标准库stdlib.h中提供了字符串到数字的转换。
一、头文件
[cpp] view plaincopyprint?
1. #include <stdlib.h>
二、函数列表
[cpp] view plaincopyprint?
1. int atoi ( const char * str );
2. long int atol ( const char * str ...