让c++程序暂停的方法有哪些

让c++程序暂停的方法有哪些,第1张

程序暂停:

在C++里使用

#include <conioh>

getch();

或者

#include <cstdio>

getchar();

在windows中,还可以使用

#include <cstdlib>

system("pause");

如果单纯想要查看结果,还可以使用sleep

windows中

#include <windows>

Sleep(int);

在linux中

#include <unistdh>

sleep(int);

在线程中,如果要暂停一定的时间,可以使用Thread的Sleep方法,让线程暂停。在微软新的win8API中,已经用Task来实现原来用线程实现的许多功能,同样,Task也有Delay方法,让程序暂停一定的时间。

以下程序利用SystemThreadingTimer让程序每隔间隔的时间执行回调方法:

using System;

using SystemCollectionsGeneric;

using SystemText;

using SystemThreading;

namespace TimerApp{

class Program{

static void Main(string[] args){

ConsoleWriteLine(" Working with Timer type /n");

// Create the delegate for the Timer type   

TimerCallback timeCB = new TimerCallback(PrintTime);

// Establish timer settings   

Timer t = new Timer(

timeCB,             // The TimerCallback delegate type

"Hello From Main",  // Any info to pass into the called method (null for no info)

5000,                  // Amount of time to wait before starting

TimeoutInfinite);   //一秒钟调用一次 Interval of time between calls (in milliseconds)

ConsoleWriteLine("Hit key to terminate");

ConsoleReadLine();}

static void PrintTime(object state){

ConsoleWriteLine("Time is: {0}, Param is: {1}",

DateTimeNowToLongTimeString(), stateToString());}

如果把时间间隔1000改成 TimeoutInfinite,这样回调方法PrintTime只会在1秒之后调用一次。

除了Threading下有个Timer类之外,net中还有另一个Timer,就是SystemTimer名称空间下的Timer。此Timer的用法和Threading下的Timer不太相同。

SystemTimersTimer t2 = new SystemTimersTimer(100);

t2Elapsed += t2_Elapsed;

//t1AutoReset = false;

t2Enabled = true;}}

void t2_Elapsed(object sender, SystemTimersElapsedEventArgs e){}  

其中AutoReset属性的含义是是否在每次时间间隔到了都触发Elapsed事件还是只触发一次(t1AutoReset = false;)。

解决此类问题的一个小例子(实现在窗体上相隔指定时间显示字幕)

//创建StopNtime类

using System;

using SystemCollectionsGeneric;

using SystemLinq;

using SystemText;

using SystemThreading;

namespace 程序运行暂停器{

class StopNtime{

public StopNtime(){

SystemWindowsFormsControlCheckForIllegalCrossThreadCalls = false;//,跨线程调用控件必加上去         }

private int stopTime = 0;//暂停的时间

ThreadStart myStart;

Thread TheStop;

public  readonly  object MyLockWord = new object();

public   void stopWay(int stopTime){

thisstopTime = stopTime;

myStart = new ThreadStart(this ToStop );

TheStop = new Thread(myStart );

TheStopStart();

private   void ToStop(){

lock (MyLockWord){

ThreadSleep(this stopTime );

ThreadCurrentThreadAbort();

//主窗体代码

using System;

using SystemCollectionsGeneric;

using SystemComponentModel;

using SystemData;

using SystemDrawing;

using SystemLinq;

using SystemText;

using SystemWindowsForms;

using SystemThreading ;

using SystemCollections;

namespace 程序运行暂停器{

public partial class Form1 : Form{

public Form1(){

InitializeComponent();}  

private void Form1_Load(object sender, EventArgs e){

label1Text = "";

Thread f = new Thread(f1 );

fStart();}  

string MyWord = "问题:1+1= \n答案是:2 ";

private void f1(){

StopNtime mmm = new StopNtime();

foreach (char m in MyWord){

lock (mmmMyLockWord ){

label1Text += mToString();                    

mmmstopWay(300);          

//运行结果

1)ctrl + alt + delt 进程里选程序然后关闭

2)不然 开始-〉运行 打入msconfig 在服务和启动里选不要的程序,

3)再不然就要改注册表了。。。这个觉得有点困难,可以写一个小的shell来做。

4)最后有一个小软件叫做process explorer 是微软的一个小程序,下载以后何以察看现在系统运行中的程序,然后选定一个关掉也很放便,这个程序也只不过1mb左右,对查木马也有一点用。

你是ython3还是Python2?它们运行暂停的方法也有所不同,以python3为例:

1、input();

这种方法不用包含模块,因此这也是最常用的一种暂停手段。

Python2中的raw_input()和input()语句在Python3中已经被合并到input()中。

2、ossystem("pause");

这种方法需要包含os模块(import os),在windows下IDLE运行会d出cmd命令行,

进行暂停 *** 作,直接运行py文件会直接在命令行中暂停。

3、timesleep("second");

这种方法需要包含time模块(import time),second是自定义的时间长短,根据实际情况,

方法/步骤

1、在运行C程序时,还没有来的及看到结果程序就执行完了,因为那可是计算机的速度。

2、好多朋友选择在main函数尾部再加一条语句(如getch())来使程序暂停。

3、其实在C语言里是有专门用于暂停C程序的语句的。

4、system("pause");语句在stdlibh头文件中,可以在任意时刻真正的暂停程序。

5、具体是这样 *** 作的,我只写代码于此。

6、运行效果是这样。真正的暂停

以上就是关于让c++程序暂停的方法有哪些全部的内容,包括:让c++程序暂停的方法有哪些、如何让C#程序在执行中暂停一段时间、如何让程序暂停运行等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zz/9305546.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-27
下一篇 2023-04-27

发表评论

登录后才能评论

评论列表(0条)

保存