[源码下载]

重新想象 Windows 8 Store Apps (48) - 多线程之其他辅助类: SpinWait, SpinLock, Volatile, SynchronizationContext, CoreDispatcher, ThreadLocal, ThreadStaticAttribute

作者:webabcd

介绍
重新想象 Windows 8 Store Apps 之 多线程操作的其他辅助类

  • SpinWait - 自旋等待
  • SpinLock - 自旋锁
  • volatile - 必在内存
  • SynchronizationContext - 在指定的线程上同步数据
  • CoreDispatcher - 调度器,用于线程同步
  • ThreadLocal - 用于保存每个线程自己的数据
  • ThreadStaticAttribute - 所指定的静态变量对每个线程都是唯一的

示例
1、演示 SpinWait 的使用
Thread/Other/SpinWaitDemo.xaml.cs

/*
* SpinWait - 自旋等待,一个低级别的同步类型。它不会放弃任何 cpu 时间,而是让 cpu 不停的循环等待
*
* 适用场景:多核 cpu ,预期等待时间非常短(几微秒)
* 本例只是用于描述 SpinWait 的用法,而不代表适用场景
*/ using System;
using System.Threading;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation; namespace XamlDemo.Thread.Other
{
public sealed partial class SpinWaitDemo : Page
{
public SpinWaitDemo()
{
this.InitializeComponent();
} protected override void OnNavigatedTo(NavigationEventArgs e)
{
lblMsg.Text = DateTime.Now.ToString("mm:ss.fff"); SpinWait.SpinUntil(
() => // 以下条件成立时,结束等待
{
return false;
}
// 如果此超时时间过后指定的条件还未成立,则强制结束等待
,); lblMsg.Text += Environment.NewLine;
lblMsg.Text += DateTime.Now.ToString("mm:ss.fff"); SpinWait.SpinUntil(
() => // 以下条件成立时,结束等待
{
return DateTime.Now.Second % == ;
}); lblMsg.Text += Environment.NewLine;
lblMsg.Text += DateTime.Now.ToString("mm:ss.fff");
}
}
}

2、演示 SpinLock 的使用
Thread/Other/SpinLockDemo.xaml.cs

/*
* SpinLock - 自旋锁,一个低级别的互斥锁。它不会放弃任何 cpu 时间,而是让 cpu 不停的循环等待,直至锁变为可用为止
*
* 适用场景:多核 cpu ,预期等待时间非常短(几微秒)
* 本例只是用于描述 SpinLock 的用法,而不代表适用场景
*/ using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation; namespace XamlDemo.Thread.Other
{
public sealed partial class SpinLockDemo : Page
{
private static int _count; public SpinLockDemo()
{
this.InitializeComponent();
} protected async override void OnNavigatedTo(NavigationEventArgs e)
{
SpinLock spinLock = new SpinLock(); List<Task> tasks = new List<Task>(); // 一共 100 个任务并行执行,每个任务均累加同一个静态变量 100000 次,以模拟并发访问静态变量的场景
for (int i = ; i < ; i++)
{
Task task = Task.Run(
() =>
{
bool lockTaken = false; try
{
// IsHeld - 锁当前是否已由任何线程占用
// IsHeldByCurrentThread - 锁是否由当前线程占用
// 要获取 IsHeldByCurrentThread 属性,则 IsThreadOwnerTrackingEnabled 必须为 true,可以在构造函数中指定,默认就是 true // 进入锁,lockTaken - 是否已获取到锁
spinLock.Enter(ref lockTaken); for (int j = ; j < ; j++)
{
_count++;
}
}
finally
{
// 释放锁
if (lockTaken)
spinLock.Exit();
}
}); tasks.Add(task);
} // 等待所有任务执行完毕
await Task.WhenAll(tasks); lblMsg.Text = "count: " + _count.ToString();
}
}
}

3、演示 volatile 的使用
Thread/Other/VolatileDemo.xaml

<Page
x:Class="XamlDemo.Thread.Other.VolatileDemo"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:XamlDemo.Thread.Other"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"> <Grid Background="Transparent">
<StackPanel Margin="120 0 0 0"> <TextBlock FontSize="14.667" LineHeight="20">
<Run>如果编译器认为某字段无外部修改,则为了优化会将其放入寄存器</Run>
<LineBreak />
<Run>标记为 volatile 的字段,则必然会被放进内存</Run>
<LineBreak />
<Run>编写 Windows Store Apps 后台任务类的时候,如果某个字段会被后台任务的调用者修改的话,就要将其标记为 volatile,因为这种情况下编译器会认为此字段无外部修改</Run>
</TextBlock> </StackPanel>
</Grid>
</Page>

4、演示 SynchronizationContext 的使用
Thread/Other/SynchronizationContextDemo.xaml.cs

/*
* SynchronizationContext - 在指定的线程上同步数据
* Current - 获取当前线程的 SynchronizationContext 对象
* Post(SendOrPostCallback d, object state) - 同步数据到此 SynchronizationContext 所关联的线程上
*/ using System;
using Windows.System.Threading;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation; namespace XamlDemo.Thread.Other
{
public sealed partial class SynchronizationContextDemo : Page
{
System.Threading.SynchronizationContext _syncContext; public SynchronizationContextDemo()
{
this.InitializeComponent(); // 获取当前线程,即 UI 线程
_syncContext = System.Threading.SynchronizationContext.Current; ThreadPoolTimer.CreatePeriodicTimer(
(timer) =>
{
// 在指定的线程(UI 线程)上同步数据
_syncContext.Post(
(ctx) =>
{
lblMsg.Text = DateTime.Now.ToString("mm:ss.fff");
},
null);
},
TimeSpan.FromMilliseconds());
}
}
}

5、演示 CoreDispatcher 的使用
Thread/Other/CoreDispatcherDemo.xaml.cs

/*
* CoreDispatcher - 调度器,用于线程同步
*/ using System;
using Windows.System.Threading;
using Windows.UI.Core;
using Windows.UI.Xaml;
using Windows.UI.Xaml.Controls; namespace XamlDemo.Thread.Other
{
public sealed partial class CoreDispatcherDemo : Page
{
public CoreDispatcherDemo()
{
this.InitializeComponent(); // 获取 UI 线程的 CoreDispatcher
CoreDispatcher dispatcher = Window.Current.Dispatcher; ThreadPoolTimer.CreatePeriodicTimer(
(timer) =>
{
// 通过 CoreDispatcher 同步数据
// var ignored = this.Dispatcher.RunAsync(CoreDispatcherPriority.Normal,
var ignored = dispatcher.RunAsync(CoreDispatcherPriority.Normal,
() =>
{
lblMsg.Text = DateTime.Now.ToString("mm:ss.fff");
});
},
TimeSpan.FromMilliseconds());
}
}
}

6、演示 ThreadLocal 的使用
Thread/Other/ThreadLocalDemo.xaml.cs

/*
* ThreadLocal<T> - 用于保存每个线程自己的数据,T - 需要保存的数据的数据类型
* ThreadLocal(Func<T> valueFactory, bool trackAllValues) - 构造函数
* valueFactory - 指定当前线程个性化数据的初始值
* trackAllValues - 是否需要获取所有线程的个性化数据
* T Value - 当前线程的个性化数据
* IList<T> Values - 获取所有线程的个性化数据(trackAllValues == true 才能获取)
*
*
* 注:ThreadStaticAttribute 与 ThreadLocal<T> 的作用差不多
*/ using System;
using System.Threading;
using System.Threading.Tasks;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation; namespace XamlDemo.Thread.Other
{
public sealed partial class ThreadLocalDemo : Page
{
System.Threading.SynchronizationContext _syncContext; public ThreadLocalDemo()
{
this.InitializeComponent(); // 获取当前线程,即 UI 线程
_syncContext = System.Threading.SynchronizationContext.Current;
} protected override void OnNavigatedTo(NavigationEventArgs e)
{
ThreadLocal<string> localThread = new ThreadLocal<string>(
() => "ui thread webabcd", // ui 线程的个性化数据
false); Task.Run(() =>
{
// 此任务的个性化数据
localThread.Value = "thread 1 webabcd"; _syncContext.Post((ctx) =>
{
lblMsg.Text += Environment.NewLine;
lblMsg.Text += ctx.ToString();
},
localThread.Value);
}); Task.Run(() =>
{
// 此任务的个性化数据
localThread.Value = "thread 2 webabcd"; _syncContext.Post((ctx) =>
{
lblMsg.Text += Environment.NewLine;
lblMsg.Text += ctx.ToString();
},
localThread.Value);
}); lblMsg.Text += localThread.Value;
}
}
}

7、演示 ThreadStaticAttribute 的使用
Thread/Other/ThreadStaticAttributeDemo.xaml.cs

/*
* ThreadStaticAttribute - 所指定的静态变量对每个线程都是唯一的
*
*
* 注:ThreadStaticAttribute 与 ThreadLocal<T> 的作用差不多
*/ using System;
using System.Threading.Tasks;
using Windows.UI.Xaml.Controls;
using Windows.UI.Xaml.Navigation; namespace XamlDemo.Thread.Other
{
public sealed partial class ThreadStaticAttributeDemo : Page
{
// 此静态变量对每个线程都是唯一的
[ThreadStatic]
private static int _testValue = ; System.Threading.SynchronizationContext _syncContext; public ThreadStaticAttributeDemo()
{
this.InitializeComponent(); // 获取当前线程,即 UI 线程
_syncContext = System.Threading.SynchronizationContext.Current;
} protected override void OnNavigatedTo(NavigationEventArgs e)
{
Task.Run(() =>
{
_testValue = ; _syncContext.Post((testValue) =>
{
lblMsg.Text += Environment.NewLine;
// 此 Task 上的 _testValue 的值
lblMsg.Text += "thread 1 testValue: " + testValue.ToString();
},
_testValue);
}); Task.Run(() =>
{
_testValue = ; _syncContext.Post((testValue) =>
{
lblMsg.Text += Environment.NewLine;
// 此 Task 上的 _testValue 的值
lblMsg.Text += "thread 2 testValue: " + testValue.ToString();
},
_testValue);
}); // ui 线程上的 _testValue 的值
lblMsg.Text = "ui thread testValue: " + _testValue.ToString();
}
}
}

OK
[源码下载]

重新想象 Windows 8 Store Apps (48) - 多线程之其他辅助类: SpinWait, SpinLock, Volatile, SynchronizationContext, CoreDispatcher, ThreadLocal, ThreadStaticAttribute的更多相关文章

  1. 重新想象 Windows 8 Store Apps (42) - 多线程之线程池: 延迟执行, 周期执行, 在线程池中找一个线程去执行指定的方法

    [源码下载] 重新想象 Windows 8 Store Apps (42) - 多线程之线程池: 延迟执行, 周期执行, 在线程池中找一个线程去执行指定的方法 作者:webabcd 介绍重新想象 Wi ...

  2. 重新想象 Windows 8 Store Apps (43) - 多线程之任务: Task 基础, 多任务并行执行, 并行运算(Parallel)

    [源码下载] 重新想象 Windows 8 Store Apps (43) - 多线程之任务: Task 基础, 多任务并行执行, 并行运算(Parallel) 作者:webabcd 介绍重新想象 W ...

  3. 重新想象 Windows 8 Store Apps (44) - 多线程之异步编程: 经典和最新的异步编程模型, IAsyncInfo 与 Task 相互转换

    [源码下载] 重新想象 Windows 8 Store Apps (44) - 多线程之异步编程: 经典和最新的异步编程模型, IAsyncInfo 与 Task 相互转换 作者:webabcd 介绍 ...

  4. 重新想象 Windows 8 Store Apps (45) - 多线程之异步编程: IAsyncAction, IAsyncOperation, IAsyncActionWithProgress, IAsyncOperationWithProgress

    [源码下载] 重新想象 Windows 8 Store Apps (45) - 多线程之异步编程: IAsyncAction, IAsyncOperation, IAsyncActionWithPro ...

  5. 重新想象 Windows 8 Store Apps (46) - 多线程之线程同步: Lock, Monitor, Interlocked, Mutex, ReaderWriterLock

    [源码下载] 重新想象 Windows 8 Store Apps (46) - 多线程之线程同步: Lock, Monitor, Interlocked, Mutex, ReaderWriterLoc ...

  6. 重新想象 Windows 8 Store Apps (47) - 多线程之线程同步: Semaphore, CountdownEvent, Barrier, ManualResetEvent, AutoResetEvent

    [源码下载] 重新想象 Windows 8 Store Apps (47) - 多线程之线程同步: Semaphore, CountdownEvent, Barrier, ManualResetEve ...

  7. 重新想象 Windows 8 Store Apps 系列文章索引

    [源码下载][重新想象 Windows 8.1 Store Apps 系列文章] 重新想象 Windows 8 Store Apps 系列文章索引 作者:webabcd 1.重新想象 Windows ...

  8. 重新想象 Windows 8 Store Apps (56) - 系统 UI: Scale, Snap, Orientation, High Contrast 等

    [源码下载] 重新想象 Windows 8 Store Apps (56) - 系统 UI: Scale, Snap, Orientation, High Contrast 等 作者:webabcd ...

  9. 重新想象 Windows 8 Store Apps (30) - 信息: 获取包信息, 系统信息, 硬件信息, PnP信息, 常用设备信息

    原文:重新想象 Windows 8 Store Apps (30) - 信息: 获取包信息, 系统信息, 硬件信息, PnP信息, 常用设备信息 [源码下载] 重新想象 Windows 8 Store ...

随机推荐

  1. 2.C#中泛型在方法Method上的实现

    阅读目录   一:C#中泛型在方法Method上的实现 把Persion类型序列化为XML格式的字符串,把Book类型序列化为XML格式的字符串,但是只写一份代码,而不是public static s ...

  2. Linux连续执行多条命令

    引自:这里 每条命令使用";"隔开,则无论前边的命令执行成功与否都会继续执行下一条命令这里,故意将第二条命令中的echo多写了一个o,命令执行出错,但并不影响后续命令的执行可以这么 ...

  3. 【网络——Linux】——IPMI详细介绍【转】

    一.IPMI含义 智能平台管理接口(IPMI:Intelligent Platform Management Interface)是一项应用于服务器管理系统设计的标准,由Intel.HP.Dell和N ...

  4. 使用 T-SQL 计算当日日期、本周第一天与最后一天

    --当日日期 ); SET @Today = DATENAME(YEAR, GETDATE()) + '-' + DATENAME(MONTH, GETDATE()) + '-' + DATENAME ...

  5. Spark源码系列(二)RDD详解

    1.什么是RDD? 上一章讲了Spark提交作业的过程,这一章我们要讲RDD.简单的讲,RDD就是Spark的input,知道input是啥吧,就是输入的数据. RDD的全名是Resilient Di ...

  6. 15款效果很酷的最新jQuery/CSS3特效

    很久没来博客园发表文章了,今天就分享15款效果很酷的最新jQuery/CSS3特效,废话不说,一起来看看吧. 1.3D图片上下翻牌切换 一款基于jQuery+CSS3实现的3D图片上下翻牌切换效果,支 ...

  7. saiku 分布式实践

    saiku比较吃内存,一旦人多了,那么内存可能不够,所以会考虑主从结构,分担压力.为了保证数据的稳定性,也会有类似的考虑,那么问题来了,如何实现saiku的分布式搭建哪? 我阅读了一些国内的文章,没有 ...

  8. IIS+PHP+MYSQL安装配置

    首先下载php-5.2.0-win32.zip,mysql-noinstall-5.0.22-win32.zip和phpMyAdmin-2.9.1.1-all-languages.zip.这三个文件的 ...

  9. LiveWriter Test

    From LiveWriter.

  10. Touch Event

    转自:      http://hi.baidu.com/masaiui/item/971775e8b316238bc10d754b 参考: http://hedgehogking.com/?p=55 ...