小编T-s*_*ent的帖子

c ++ [&]运算符

您好我在Windows文档中找到了此代码

但我没有得到什么意思

[&]
Run Code Online (Sandbox Code Playgroud)

只是请你能清楚我该怎么办?

它不是c ++标准的真实?

这是代码:

void parallel_matrix_multiply(double** m1, double** m2, double** result, size_t size)
{
   parallel_for (size_t(0), size, [&](size_t i)
   {
      for (size_t j = 0; j < size; j++)
      {
         double temp = 0;
         for (int k = 0; k < size; k++)
         {
            temp += m1[i][k] * m2[k][j];
         }
         result[i][j] = temp;
      }
   });
}
Run Code Online (Sandbox Code Playgroud)

c++ c++11

11
推荐指数
5
解决办法
4434
查看次数

ORA-01779:无法修改映射到非密钥保留表的列

我有这个程序:

create or replace procedure changePermissionsToRead(
datasource  in varchar2
) 
IS

begin

update 
(
select * from 
WEB_USERROLE ur ,
WEB_USERDATASOURCE ds 
where 
    ur.username = ds.username 
    and 
    ds.datasource = datasource
    and 
    ur.READ_ONLY <> 'Y'  
)
r set r.role = replace(r.role, 'FULL', 'READ');
end;
Run Code Online (Sandbox Code Playgroud)

我收到以下错误:

 ORA-01779
Run Code Online (Sandbox Code Playgroud)

但如果我拿出更新,我写道:

  update 
(
select * from 
WEB_USERROLE ur ,
WEB_USERDATASOURCE ds 
where 
    ur.username = ds.username 
    and 
    ds.datasource = 'PIPPO'
    and 
    ur.READ_ONLY <> 'Y'  
)
r set r.role = replace(r.role, 'FULL', 'READ');
Run Code Online (Sandbox Code Playgroud)

然后这很好用.你能告诉我发生了什么吗?

oracle plsql

6
推荐指数
1
解决办法
6万
查看次数

Python ImportError:Google app引擎项目中没有名为main的模块

我有以下app.yaml文件

application: gtryapp
version: 1
runtime: python27
api_version: 1
threadsafe: yes

handlers:

- url: /images/(.*\.(gif|png|jpg))
  static_files: static/img/\1
  upload: static/img/(.*\.(gif|png|jpg))

- url: /css/(.*\.css)
  mime_type: text/css
  static_files: static/css/\1
  upload: static/css/(.*\.css)

- url: /js/(.*\.js)
  mime_type: text/javascript
  static_files: static/js/\1
  upload: static/js/(.*\.js)

- url: /(.*\.html)
  mime_type: text/html
  static_files: static/\1
  upload: static/(.*\.html)

- url: .*
  script: main.app


libraries:

- name: webapp2
  version: "2.5.2"
Run Code Online (Sandbox Code Playgroud)

和文件app.py:

import webapp2

class MainPage(webapp2.RequestHandler):
def get(self):
    if self.request.url.endswith('/'):
        path = '%sindex.html'%self.request.url
    else:
        path = '%s/index.html'%self.request.url

    self.redirect(path)


    application = webapp2.WSGIApplication([('/.*', MainPage)],
                                     debug=True)
Run Code Online (Sandbox Code Playgroud)

我应该部署的文件只是html文件或js或图像,编译应用程序后出现以下错误: …

python google-app-engine

4
推荐指数
1
解决办法
7789
查看次数

AngularJS工厂的getter和setter对象

我尝试为Supercontainer对象制作一个getter和setter,但它似乎不起作用.

PrometeiaECAProModuleMain.factory('ParameterFactory', [function () {


var Supercontainer = function (userId, supercontainerId, bankId) {
    this.userId = userId; 
    this.supercontainerId = supercontainerid;
    this.bankId = bankId;
};



return {

    setSupercontainerParam: function (userId, supercontainerid, bank) {
        supercontainer = new Supercontainer(userId, supercontainerid, bank);
    },

    getSupercontainerParam: function () {
        return supercontainer;
    }
   };
 }]);
Run Code Online (Sandbox Code Playgroud)

javascript angularjs

2
推荐指数
1
解决办法
7777
查看次数

谷歌应用引擎 GET /index.html HTTP/1.1" 404 -

我有以下 main.py 文件:

 import webapp2

 class MainPage(webapp2.RequestHandler):
 def get(self):
    if self.request.url.endswith('/'):
        path = '%sindex.html'%self.request.url
    else:
        path = '%s/index.html'%self.request.url

    self.redirect(path)


 app = webapp2.WSGIApplication([('/.*', MainPage)],
                                     debug=True)
Run Code Online (Sandbox Code Playgroud)

app.yaml 文件:

 application: gtryapp
 version: 1
 runtime: python27
 api_version: 1
 threadsafe: yes
Run Code Online (Sandbox Code Playgroud)

处理程序:

  • url: /images/(. .(gif|png|jpg)) static_files: static/img/\1 上传: static/img/(. .(gif|png|jpg))

  • url: /css/(. .css) mime_type: text/css static_files: static/css/\1 上传: static/css/(. .css)

  • url: /js/(. .js) mime_type: text/javascript static_files: static/js/\1 上传: static/js/(. .js)

  • url: /(. .html) mime_type: text/html static_files: static/\1 上传: static/(. .html)

  • url: .* 脚本: main.app

图书馆: …

python google-app-engine

1
推荐指数
1
解决办法
3542
查看次数

Java线程非法状态异常

在一个代码中,一个类启动一个线程调用start方法.

它抛出了一个非法的例外.但是,如果我调用run()它会很好.

你能告诉我为什么吗?

class A{


void methodA(){
   T t = new T();
    t.start();     // illegal state exception
    t.run();  ///ok 
}

}

class T extends Thread{

....

....

}
Run Code Online (Sandbox Code Playgroud)

真实代码:

  public class FileMultiServer
 {
  private static Logger _logger = Logger.getLogger("FileMultiServer");

  public static void main(String[] args) 
  {

 ServerSocket serverSocket = null;
 boolean listening = true;

 String host = "localhost";
 int porta = 4444;
 InetSocketAddress addr = null;
 String archiveDir = System.getProperty("java.io.tmpdir");

 Aes aes = new Aes();

 Properties prop = new Properties();
 //load …
Run Code Online (Sandbox Code Playgroud)

java multithreading

0
推荐指数
1
解决办法
2万
查看次数

java prepared statement java.sql.SQLException:ORA-01747

嗨,伙计们,你能告诉我为什么我通过这个查询得到以下错误?

 private String updateMoneyDealsEdit = "update moneydeals set mask = substr(mask,0,?)||'1'||substr(mask,?,32), " +
"ITI=?,UTI=?,idCONTROPARTE=?,'',SDR=?,USI=?,CONFIRMATIONTIME=?,CONFIRMATIONMETHOD=?,EVENTDATE=?, " +
" CONFIRMATIONDATE=?,codicemessaggio=?,'',PARENTCODICECONTRATTO=?,'I',RESEND=1 where CODINTORD=? and CODICEMESSAGGIO=? and EVENTCODE=? and EVENTDATE=? ";
Run Code Online (Sandbox Code Playgroud)

java sql oracle

-1
推荐指数
1
解决办法
182
查看次数