Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
QTimeaを秒に変換するにはどうすればよいですか? 私は時間を手動で設定しましたtime.setHMS(0,1,0);
QTime
time.setHMS(0,1,0);
この変数を に変換するtimeとinteger、60 秒が必要になります。どうすればこれを達成できますか?
time
integer
あなたはこれを行うことができます:
int seconds = QTime(0, 0, 0).secsTo(time);
int seconds = QTime(0,0).secsTo(time);Qt 5.3.0で動作します
int seconds = QTime(0,0).secsTo(time);