线程小实验
This commit is contained in:
commit
70ab09c272
BIN
xiancheng/.vs/xiancheng/v16/.suo
Normal file
BIN
xiancheng/.vs/xiancheng/v16/.suo
Normal file
Binary file not shown.
BIN
xiancheng/.vs/xiancheng/v16/Browse.VC.db
Normal file
BIN
xiancheng/.vs/xiancheng/v16/Browse.VC.db
Normal file
Binary file not shown.
Binary file not shown.
BIN
xiancheng/Debug/main.obj
Normal file
BIN
xiancheng/Debug/main.obj
Normal file
Binary file not shown.
BIN
xiancheng/Debug/vc142.idb
Normal file
BIN
xiancheng/Debug/vc142.idb
Normal file
Binary file not shown.
BIN
xiancheng/Debug/vc142.pdb
Normal file
BIN
xiancheng/Debug/vc142.pdb
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.exe
Normal file
BIN
xiancheng/Debug/xiancheng.exe
Normal file
Binary file not shown.
11
xiancheng/Debug/xiancheng.exe.recipe
Normal file
11
xiancheng/Debug/xiancheng.exe.recipe
Normal file
@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project>
|
||||
<ProjectOutputs>
|
||||
<ProjectOutput>
|
||||
<FullPath>C:\Users\leave1031\Desktop\1\xiancheng\Debug\xiancheng.exe</FullPath>
|
||||
</ProjectOutput>
|
||||
</ProjectOutputs>
|
||||
<ContentFiles />
|
||||
<SatelliteDlls />
|
||||
<NonRecipeFileRefs />
|
||||
</Project>
|
BIN
xiancheng/Debug/xiancheng.ilk
Normal file
BIN
xiancheng/Debug/xiancheng.ilk
Normal file
Binary file not shown.
2
xiancheng/Debug/xiancheng.log
Normal file
2
xiancheng/Debug/xiancheng.log
Normal file
@ -0,0 +1,2 @@
|
||||
main.cpp
|
||||
xiancheng.vcxproj -> C:\Users\leave1031\Desktop\1\xiancheng\Debug\xiancheng.exe
|
BIN
xiancheng/Debug/xiancheng.pdb
Normal file
BIN
xiancheng/Debug/xiancheng.pdb
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.tlog/CL.command.1.tlog
Normal file
BIN
xiancheng/Debug/xiancheng.tlog/CL.command.1.tlog
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.tlog/CL.read.1.tlog
Normal file
BIN
xiancheng/Debug/xiancheng.tlog/CL.read.1.tlog
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.tlog/CL.write.1.tlog
Normal file
BIN
xiancheng/Debug/xiancheng.tlog/CL.write.1.tlog
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.tlog/link.command.1.tlog
Normal file
BIN
xiancheng/Debug/xiancheng.tlog/link.command.1.tlog
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.tlog/link.read.1.tlog
Normal file
BIN
xiancheng/Debug/xiancheng.tlog/link.read.1.tlog
Normal file
Binary file not shown.
BIN
xiancheng/Debug/xiancheng.tlog/link.write.1.tlog
Normal file
BIN
xiancheng/Debug/xiancheng.tlog/link.write.1.tlog
Normal file
Binary file not shown.
2
xiancheng/Debug/xiancheng.tlog/xiancheng.lastbuildstate
Normal file
2
xiancheng/Debug/xiancheng.tlog/xiancheng.lastbuildstate
Normal file
@ -0,0 +1,2 @@
|
||||
PlatformToolSet=v142:VCToolArchitecture=Native32Bit:VCToolsVersion=14.29.30133:VCServicingVersionMFC=14.29.30136:TargetPlatformVersion=10.0.19041.0:
|
||||
Debug|Win32|C:\Users\leave1031\Desktop\1\xiancheng\|
|
1
xiancheng/Debug/xiancheng.vcxproj.FileListAbsolute.txt
Normal file
1
xiancheng/Debug/xiancheng.vcxproj.FileListAbsolute.txt
Normal file
@ -0,0 +1 @@
|
||||
C:\Users\leave1031\Desktop\1\xiancheng\Debug\xiancheng.exe
|
81
xiancheng/main.cpp
Normal file
81
xiancheng/main.cpp
Normal file
@ -0,0 +1,81 @@
|
||||
#include<Windows.h>
|
||||
#include <iostream>
|
||||
using namespace std;
|
||||
|
||||
|
||||
HANDLE hThread;
|
||||
HANDLE hThread1;
|
||||
struct SUMMING
|
||||
{
|
||||
unsigned char sum1;
|
||||
unsigned int num1;
|
||||
int num2;
|
||||
}sumning;
|
||||
|
||||
struct json_text
|
||||
{
|
||||
char name;
|
||||
double number;
|
||||
SUMMING truct;
|
||||
|
||||
}on_text;
|
||||
|
||||
|
||||
void* receive_test(json_text* temp)
|
||||
{
|
||||
|
||||
while (1)
|
||||
{
|
||||
CoInitialize(NULL);
|
||||
cout << temp->name<<endl;
|
||||
CoUninitialize();
|
||||
Sleep(1000);
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
void* receive_test_2(json_text* temp)
|
||||
{
|
||||
|
||||
while (1)
|
||||
{
|
||||
CoInitialize(NULL);
|
||||
cout << temp->number<<endl;
|
||||
CoUninitialize();
|
||||
Sleep(1000);
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
|
||||
int main()
|
||||
{
|
||||
unsigned a = -15;
|
||||
int c = 1;
|
||||
on_text.name = 'a';
|
||||
on_text.number = 3;
|
||||
on_text.truct.num1 = -15;
|
||||
on_text.truct.num2 = 2;
|
||||
on_text.truct.sum1 = 'b';
|
||||
cout << on_text.truct.sum1 << endl;
|
||||
a = 'a';
|
||||
json_text* temp = &on_text;
|
||||
|
||||
|
||||
if (NULL != (hThread = CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)receive_test, temp, 0, NULL)))
|
||||
{
|
||||
cout << "线程1创建成功!" << endl;
|
||||
}
|
||||
|
||||
if (NULL != (hThread1 = CreateThread(NULL, NULL, (LPTHREAD_START_ROUTINE)receive_test_2, temp, 0, NULL)))
|
||||
{
|
||||
cout << "线程2创建成功!" << endl;
|
||||
}
|
||||
|
||||
while (true)
|
||||
{
|
||||
|
||||
|
||||
}
|
||||
return 0;
|
||||
}
|
31
xiancheng/xiancheng.sln
Normal file
31
xiancheng/xiancheng.sln
Normal file
@ -0,0 +1,31 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Version 16
|
||||
VisualStudioVersion = 16.0.33801.447
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "xiancheng", "xiancheng.vcxproj", "{C24CE115-19E2-42E1-92C3-8B80775BDC0D}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|x64 = Debug|x64
|
||||
Debug|x86 = Debug|x86
|
||||
Release|x64 = Release|x64
|
||||
Release|x86 = Release|x86
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Debug|x64.ActiveCfg = Debug|x64
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Debug|x64.Build.0 = Debug|x64
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Debug|x86.ActiveCfg = Debug|Win32
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Debug|x86.Build.0 = Debug|Win32
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Release|x64.ActiveCfg = Release|x64
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Release|x64.Build.0 = Release|x64
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Release|x86.ActiveCfg = Release|Win32
|
||||
{C24CE115-19E2-42E1-92C3-8B80775BDC0D}.Release|x86.Build.0 = Release|Win32
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||
SolutionGuid = {31C64110-E8D7-4175-97C6-20A6DD369694}
|
||||
EndGlobalSection
|
||||
EndGlobal
|
147
xiancheng/xiancheng.vcxproj
Normal file
147
xiancheng/xiancheng.vcxproj
Normal file
@ -0,0 +1,147 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup Label="ProjectConfigurations">
|
||||
<ProjectConfiguration Include="Debug|Win32">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|Win32">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>Win32</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Debug|x64">
|
||||
<Configuration>Debug</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
<ProjectConfiguration Include="Release|x64">
|
||||
<Configuration>Release</Configuration>
|
||||
<Platform>x64</Platform>
|
||||
</ProjectConfiguration>
|
||||
</ItemGroup>
|
||||
<PropertyGroup Label="Globals">
|
||||
<VCProjectVersion>16.0</VCProjectVersion>
|
||||
<Keyword>Win32Proj</Keyword>
|
||||
<ProjectGuid>{c24ce115-19e2-42e1-92c3-8b80775bdc0d}</ProjectGuid>
|
||||
<RootNamespace>xiancheng</RootNamespace>
|
||||
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>true</UseDebugLibraries>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||
<ConfigurationType>Application</ConfigurationType>
|
||||
<UseDebugLibraries>false</UseDebugLibraries>
|
||||
<PlatformToolset>v142</PlatformToolset>
|
||||
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||
<CharacterSet>Unicode</CharacterSet>
|
||||
</PropertyGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||
<ImportGroup Label="ExtensionSettings">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="Shared">
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||
</ImportGroup>
|
||||
<PropertyGroup Label="UserMacros" />
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<LinkIncremental>true</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<LinkIncremental>false</LinkIncremental>
|
||||
</PropertyGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<PreprocessorDefinitions>WIN32;_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<PreprocessorDefinitions>WIN32;NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<PreprocessorDefinitions>_DEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||
<ClCompile>
|
||||
<WarningLevel>Level3</WarningLevel>
|
||||
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||
<SDLCheck>true</SDLCheck>
|
||||
<PreprocessorDefinitions>NDEBUG;_CONSOLE;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||
<ConformanceMode>true</ConformanceMode>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<SubSystem>Console</SubSystem>
|
||||
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||
<OptimizeReferences>true</OptimizeReferences>
|
||||
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||
</Link>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||
<ImportGroup Label="ExtensionTargets">
|
||||
</ImportGroup>
|
||||
</Project>
|
22
xiancheng/xiancheng.vcxproj.filters
Normal file
22
xiancheng/xiancheng.vcxproj.filters
Normal file
@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<ItemGroup>
|
||||
<Filter Include="源文件">
|
||||
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="头文件">
|
||||
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
||||
</Filter>
|
||||
<Filter Include="资源文件">
|
||||
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||
</Filter>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<ClCompile Include="main.cpp">
|
||||
<Filter>源文件</Filter>
|
||||
</ClCompile>
|
||||
</ItemGroup>
|
||||
</Project>
|
4
xiancheng/xiancheng.vcxproj.user
Normal file
4
xiancheng/xiancheng.vcxproj.user
Normal file
@ -0,0 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup />
|
||||
</Project>
|
Loading…
Reference in New Issue
Block a user