用c语言实现电脑的重新启动的程序怎么写

用c语言实现电脑的重新启动的程序怎么写,第1张

#include <空碰stdio.h>蠢租

#include <斗档谈stdlib.h>

int main()

{system("shutdown.exe/s /t 0")

return 0

}

先启动和自己同样的进程,再关闭自己。慎雀

如果你使用QT,可以像下面那样启孝者做:

C/C++ code#include <QtGui>class Temp : public QWidget { Q_OBJECT private: QLabel *labelQPushButton *buttonpublic: Temp(QWidget *parent = 0)public slots: void ClickedButton()}Temp::Temp(QWidget *parent) : QWidget(parent) { button = new QPushButton("restart", this)QVBoxLayout *layout = new QVBoxLayoutlayout->悄薯addWidget(button)setLayout(layout)move(200, 200)connect(button, SIGNAL(clicked()), this, SLOT(ClickedButton()))} void Temp::ClickedButton() { QProcess *p = new QProcess(this)QString str = QApplication::applicationFilePath()p->startDetached(str)close()} #include "main.moc" int main(int argc, char *argv[]) { QApplication app(argc, argv)Temp *temp = new Temptemp->show()return app.exec()}


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

原文地址:https://54852.com/yw/8246426.html

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

发表评论

登录后才能评论

评论列表(0条)

    保存