[源码下载]

重新想象 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. leetCode191/201/202/136 -Number of 1 Bits/Bitwise AND of Numbers Range/Happy Number/Single Number

    一:Number of 1 Bits 题目: Write a function that takes an unsigned integer and returns the number of '1' ...

  2. solr集成mmseg4j分词

    solr集成mmseg4j分词 mmseg4j https://code.google.com/p/mmseg4j/ https://github.com/chenlb/mmseg4j-solr 作者 ...

  3. Oracle外键不加索引会引起死锁问题

    转载链接:http://www.jb51.net/article/50161.htm 这篇文章主要介绍了Oracle外键不加索引引起死锁的情况及解决,需要的朋友可以参考下 --创建一个表,此表作为子表 ...

  4. 飞思卡尔9S12X系列双核中的协处理器XGATE使用方法

    http://adi.chinaaet.com/analog/blogdetail/24482.html

  5. [转载]堆排序(HeapSort) Java实现

    堆排序的思想是利用数据结构--堆.具体的实现细节: 1. 构建一个最大堆.对于给定的包含有n个元素的数组A[n],构建一个最大堆(最大堆的特性是,某个节点的值最多和其父节点的值一样大.这样,堆中的最大 ...

  6. C primer plus 练习题 第五章

    1. #include <stdio.h> #define MINU 60 int main() { int minute, hour, m; printf("请输入分钟:&qu ...

  7. LeetCode:5_Longest Palindromic Substring | 最长的回文子串 | Medium

    题目: Given a , and there exists one unique longest palindromic substring. 解题思路:1.简单思路:暴力破解法,时间复杂度O(n^ ...

  8. 查询修改linux 打开文件句柄数量

    查询系统支持最大可打开文件句柄数量: #vi /proc/sys/fs/file-max 查询当前连接用户最大可打开文件句柄数量: #ulimit -a 修改当前连接用户最大可打开文件句柄数量: #u ...

  9. Qt编写自定义控件大全

    最新版可执行文件 http://pan.baidu.com/s/1i491FQP 不定期增加控件及修正BUG和改进算法. 总图: 1:动画按钮 * 1:可设置显示的图像和底部的文字 * 2:可设置普通 ...

  10. How to debug Typescript in browser

    How to debug typescript, In Chrome, we need to press F12, open settings, uncheck the Enable JavaScri ...