第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

第一次見(jiàn)這個(gè)函數(shù)名的寫(xiě)法auto fn = [],知道函數(shù)干什么的嗎?

第一次見(jiàn)這個(gè)函數(shù)名的寫(xiě)法auto fn = [],知道函數(shù)干什么的嗎?

PHP
慕運(yùn)維8079593 2023-03-02 21:17:31
auto fn = [](int *a) { for (int i = 0; i < 10; i++) cout << *a << endl; };
查看完整描述

2 回答

?
九州編程

TA貢獻(xiàn)1785條經(jīng)驗(yàn) 獲得超4個(gè)贊

public class Day1{ public static void main(String[] args){ int a = 1; a++; 
System.out.println(a);} }
方法要放在類里面,方法的實(shí)現(xiàn)要放在方法里面

查看完整回答
反對(duì) 回復(fù) 2023-03-06
?
寶慕林4294392

TA貢獻(xiàn)2021條經(jīng)驗(yàn) 獲得超8個(gè)贊

就是創(chuàng)建臨時(shí)函數(shù)以方便重復(fù)調(diào)用,這個(gè)一般在局部函數(shù)中使用,不暴露在外部的。
auto是C/C++的東西,在C++11標(biāo)準(zhǔn)的語(yǔ)法中,auto被定義為自動(dòng)推斷變量的類型。
[](){}; 是在定義一個(gè)函數(shù),
記得怎么定義函數(shù)指針的么 typedef void (*FUNP)(int a); 類似的吧。
[]中括號(hào)里可以用&修飾,具體什么作用可以查查資料,我也不太清楚,在大部分情況下&符號(hào)不加也沒(méi)關(guān)系,但有時(shí)編譯器無(wú)法隱式捕獲;
()小括號(hào)中是形參列表;
{}括號(hào)中是函數(shù)體,
因?yàn)槭嵌x函數(shù),大括號(hào)后面記得加 ; 分號(hào)。
例子:
void test()
{
auto fn = [&](int i){
printf("%d\n",i);
i++;
return i;
};
int var = 0;
while(var < 10000)
{
var = fn(var);
}
}
還有,利用此方法可以很方便的開(kāi)辟線程
例子:之前用Qt寫(xiě)的測(cè)試代碼,就沒(méi)重新寫(xiě)例子
#include "thread"
#include <qmutex.h>
#include <QDebug>
#include <QTime>
long long tt = 0;
QMutex mtx;
int main(int argc, char *argv[])
{
std::thread *thd_test = new std::thread([&](){
bool quit = false;
while(!quit)
{
mtx.lock();
tt++;
if(tt== LLONG_MAX)
quit = true;
if(tt == 5000)
thd_test->detach();
mtx.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(2));
}
});
std::thread *thd_run = new std::thread([&](){
bool exit = false;
while(!exit)
{
mtx.lock();
qDebug() << "thd_run" << tt;
if(tt == 10000)
exit = true;
mtx.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
});
thd_run->join();
qDebug() << "***********************************************";
std::this_thread::sleep_for(std::chrono::seconds(5));
qDebug() << "***********************************************";
std::thread *thd_after = new std::thread([&](){
bool exit = false;
while(!exit)
{
mtx.lock();
qDebug() << "thd_after" <<tt;
if(tt == 20000)
exit = true;
mtx.unlock();
std::this_thread::sleep_for(std::chrono::milliseconds(1));
}
});
thd_after->join();
return 0;


查看完整回答
反對(duì) 回復(fù) 2023-03-06
  • 2 回答
  • 0 關(guān)注
  • 88 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)