小编use*_*764的帖子

如何通过另一个构造函数传递构造函数

我有课程日期和时间.我正在使用公共构造函数创建一个类Onetime但我不确定如何创建新的日期和时间内联.

schedule[0]= new Onetime("see the dentist", 
  Date(2013, 11, 4), 
  Time(11, 30, 0), 
  Time(12, 30, 0));

class Onetime {
  public: 
    Onetime(  // what should I put here?  )
}
Run Code Online (Sandbox Code Playgroud)

c++

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

.live listner检查用户是否按Tab键以关注当前输入字段

我有一些输入字段彼此叠加,我希望能够检查用户是否使用了tab键或单击以关注当前输入字段.检查.live('click', function() {很容易但我不知道如何检查他们是否使用tab来关注当前输入字段.

javascript jquery

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

风格WordPress表?

这是我的WordPress表.我创建了一个数组,以便我可以尝试一下,但我需要添加类和ID,这样我就可以使用CSS来设置它,就像顶级插件页面一样.

如何向表元素添加类?

<?php

if(!class_exists('WP_List_Table')){
    require_once( ABSPATH . 'wp-admin/includes/class-wp-list-table.php' );
}


class TT_Example_List_Table extends WP_List_Table {

    var $example_data = array(
            array(
                'ID'        => 1,
                'title'     => '300',
                'rating'    => 'R',
                'director'  => 'Zach Snyder'
            ),
            array(
                'ID'        => 2,
                'title'     => 'Eyes Wide Shut',
                'rating'    => 'R',
                'director'  => 'Stanley Kubrick'
            ),
            array(
                'ID'        => 3,
                'title'     => 'Moulin Rouge!',
                'rating'    => 'PG-13',
                'director'  => 'Baz Luhrman'
            ),
            array(
                'ID'        => 4,
                'title'     => 'Snow White',
                'rating'    => 'G',
                'director'  => …
Run Code Online (Sandbox Code Playgroud)

wordpress-plugin

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

我怎么能有一个具有许多值的关联数组

我有一张带有标题的专辑,它出现的年份和专辑中的歌曲.

我的数组设置如下:

std::string alb_name[256]['title', 'year', 'songs'];
Run Code Online (Sandbox Code Playgroud)

但我希望歌曲关联数组最多能容纳20首歌曲.是否有捷径可寻?我正在编程1课程,我无法找到一种方法来做到这一点.任何帮助都是适当的.

c++ arrays associative-array

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

mysql插入自动增量和日期

mytable
+-----------+----------+------+-----+---------+----------------+
| Field     | Type     | Null | Key | Default | Extra          |
+-----------+----------+------+-----+---------+----------------+
| id        | int(255) | NO   | PRI | NULL    | auto_increment |
| date      | date     | NO   |     | NULL    |                |
| answer_id | int(255) | NO   | MUL | NULL    |                |
| count     | int(255) | YES  |     | NULL    |                |
+-----------+----------+------+-----+---------+----------------+
Run Code Online (Sandbox Code Playgroud)

SQL:

INSERT INTO mytable ('date', 'answer_id', 'count')
VALUES ('2013-12-05', '4', '1'); 
Run Code Online (Sandbox Code Playgroud)

给我 ERROR 1064

mysql

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

两个双打如何成为冲突类型?

#include<stdio.h>
#include<math.h>


int main(void){
  double a=0,r=0,n=0;
  printf("Enter Constant a:");
  scanf("%lf",&a);
  printf("Enter Constant r:");
  scanf("%lf",&r);
  printf("Enter Variable n:");
  scanf("%lf",&n);

  double an;
  an = geom_rec(a,r,n);    // Line 15

  return 0;
}

double geom_rec(double a,double r,double n){    // Line 20
  double ans=a;
  return a;
}
Run Code Online (Sandbox Code Playgroud)

错误:

Line 20: error: conflicting types for 'geom_rec'
Line 15: error: previous implicit declaration of 'geom_rec' was here
Run Code Online (Sandbox Code Playgroud)

c

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

如何引用未继承的类

我有2个类,一个移动单位的机器人类和一个地图类来跟踪它们的位置.地图集中有一个地图集类和多个机器人类.我如何在类Robot中使用Atlas中的函数.

class Atlas:
    def __init__(self):
        self.robots = []
        self.currently_occupied = {}

    def add_robot(self, robot):
        self.robots.append(robot)
        self.currently_occupied = {robot:[]}   

    def all_occupied(self):
        return self.currently_occupied

    def occupy_spot(self, x, y, name):
        self.currently_occupied[name] = [x, y]


class Robot():
    def __init__(self, rbt):
        self.xpos = 0
        self.ypos = 0
        atlas.add_robot(rbt)  #<-- is there a better way than explicitly calling this atlas
        self.name = rbt

    def step(self, axis):
        if axis in "xX":
            self.xpos += 1 
        elif axis in "yY":
            self.ypos += 1
        atlas.occupy_spot(self.xpos, self.ypos, self.name)

    def walk(self, axis, …
Run Code Online (Sandbox Code Playgroud)

python

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

c ++解决指针和整数之间的比较

do {
    getline (myfile,temp);
    if (temp[0] != "="){
        MyAlbums[i].tracks.push_back(temp);

    }
    else {
        break;
    }
}while(true);
Run Code Online (Sandbox Code Playgroud)

给我这个错误:

ISO C++禁止指针和整数之间的比较[-fpermissive]

我试图循环文本文件中的行和'push_pack'如果该行不以"="等于字符开头.否则我想摆脱循环.

任何帮助都非常适合!

c++

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

你能帮我分解一下这段代码实际上在做什么吗?if((a = b> c?d:e)== e)a ++;

int a = 2, b = 3, c = 5, d = 4, e = 1;

if ((a = b > c ? d : e) == e) a++;
Run Code Online (Sandbox Code Playgroud)

答案是a = 2

我不明白这是在做什么.

你能帮我弄清楚这段代码是一步一步做的吗?

c c++ syntax ternary-operator

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