小编Nad*_*ern的帖子

用文本填充画布形状

我想弄清楚如何将文本添加到画布形状,例如这里是我的代码:

var text ="5"; // text to display over the circle
context.fillStyle = "red";
context.beginPath();
context.arc(50,70, 10, 0, Math.PI * 2);
context.closePath();
context.fill(); 
Run Code Online (Sandbox Code Playgroud)

如果有人愿意帮助我提前将文字添加到形状中,我会非常感激.

编辑 我发现我需要在画布上再次写,所以这是我到目前为止所得到的...但是文本并没有与圆圈的中心对齐:

  context.fillStyle = "red";
  context.beginPath();
  var radius = 10; // for example
  context.arc(200, 200, radius, 0, Math.PI * 2);
  context.closePath();
  context.fill();
  context.fillStyle = "black"; // font color to write the text with
  var font = "bold " + radius +"px serif";
  context.font = font;
  context.textBaseline = "top";
  context.fillText(text, 200-radius/4 ,200-radius/2);
Run Code Online (Sandbox Code Playgroud)

html5 drawing canvas

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

如何使用Functor对集合进行排序

嘿,我正在尝试使用afunctor对我的set容器进行排序:

struct CompareCatId : public std::binary_function<Vehicale*, Vehicale*, bool>
{
    bool operator()(Vehicle* x, Vehicle* y) const
    {   
        if(x->GetVehicleType() > y->GetVehicleType())
            return true;
        else if (x->GetVehicleType() == y->GetVehicleType() 
                               && x>GetLicenseNumber() > y->GetLicenseNumber())
                return true;
            else
                return false;
}
};
Run Code Online (Sandbox Code Playgroud)

这就是我定义我的Set的方式:

      set<Vehicale*,CompareCatId>* m_vehicalesSet;
Run Code Online (Sandbox Code Playgroud)

并且我不忘记包括算法

我尝试使用这一行进行排序:

 sort(m_vehiclesSet->begin(),m_vehiclesSet->end()); 
Run Code Online (Sandbox Code Playgroud)

由于某种原因,我得到这个akward错误:

 error C2784: 'reverse_iterator<_RanIt>::difference_type std::operator -(const std::reverse_iterator<_RanIt> &,const std::reverse_iterator<_RanIt2> &)' : could not deduce template argument for 'const std::reverse_iterator<_RanIt> &' from 'std::_Tree_const_iterator<_Mytree>'
Run Code Online (Sandbox Code Playgroud)

在此先感谢您的帮助.

c++ sorting set

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

strtok与空格分隔符

嘿,我试图在C中使用strtok函数,""作为分隔符,由于某种原因它不起作用.有人可以告诉我如何使用strtok解析如何使用空格作为分隔符提前感谢

c strtok

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

打开没有扩展名的文件

我在使用C#打开文件时遇到问题.
我有一个我需要阅读的文件,当我尝试使用C#打开它时,由于某种原因无法找到文件.
这是我的代码:

 string fullpath = Directory.GetCurrentDirectory() + 
                   string.Format(@"\FT933\FT33_1");
 try
 {
      StreamReader reader = new StreamReader(fullpath);
 }
 catch(Exception e)
 {
       Console.WriteLine("The file could not be read:");
       Console.WriteLine(e.Message);
 }
Run Code Online (Sandbox Code Playgroud)

我正在尝试打开的文件在里面Debug\FT933\FT33_1,没有扩展名.
每当我试图从同一目录中打开文本文件时,我都会这样做.

EDIT:
Run Code Online (Sandbox Code Playgroud)

为了更精确我认为我有的问题是我不知道如何打开一个没有扩展的文件(如果我改变文件有.txt扩展我确实设法打开它)

c#

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

Redis管道-原子获取另一个键值的值

我有一个名为“a”的字符串键,其值为“b”,我还有一个名为“b”的哈希集,它有多个值,例如:

"a" (value equals to "b")

"b": {
       "first_name": "John",
       "last_name": "Doe"

}
Run Code Online (Sandbox Code Playgroud)

是否可以使用管道,因此给定键“a”我将收到对象 b 值?

谢谢

python redis

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

bash echo函数的问题

我如何在bash中使用echo进行打印,这样行就不会"跳跃"abit到变量长度的正确原因你可以帮我一个这样做的命令

bash echo

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

关于编写代码的C++建议

我在编写应该编写代码的方式时遇到困难.这是我的默认构造函数:

Address::Address() : m_city(NULL), m_street(NULL), m_buildingNumber(0), m_apartmentNumber(0)
{}
Run Code Online (Sandbox Code Playgroud)

......这是我的另一个构造函数:

Address::Address(const char* city, const char* street, const int buildingNumber,const int apartmentNumber) : m_city(NULL), m_street(NULL)
{
    SetAddress(city,street,buildingNumber,apartmentNumber);
}
Run Code Online (Sandbox Code Playgroud)

我必须初始化我们的城市和街道字段,因为它们包含char *,我的setter使用remove来设置一个新的城市.我非常希望听到您对如何以正确的方式编写它而不重复代码的意见.这是我的SetAddress代码:

bool Address::SetAddress(const char* city, const char* street, const int buildingNumber, const int apartmentNumber)
{
    if (SetCity(city) == false || SetStreet(street) == false || SetBuildingNumber(buildingNumber) == false || SetApartmentNumber(apartmentNumber) == false)
        return false;
    return true;
}
Run Code Online (Sandbox Code Playgroud)

这是我的SetCity:

bool Address::SetCity(const char* city)
{
    if(city == NULL)
        return false;
    delete[] m_city;
    m_city = …
Run Code Online (Sandbox Code Playgroud)

c++

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

如何从一组中释放内存

我有一个包含指向已分配内存的指针的集合,我使用clear方法示例:setname.clear(); 并且该集合本身正在被清除并且他的指针但我仍然因为某些原因而分配的内存保持未清除而导致内存泄漏.

c++ memory-leaks set

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

在c ++中返回一个对象(或结构)

嘿,我得到一个关于下一个代码中发生了什么的问题:

 typedef struct {
      double re,im;
 } Complex;

 Complex ComplexCreate(double r=0.,doublei=0.)
 {
      Complex c;
      c.re=r;
      c.im=i;
      return c; // problem with this line 
      // my question is : is c getting duplicated and returning or does it return nothing
      // when i we go back to the main
 }
Run Code Online (Sandbox Code Playgroud)

我知道在c ++中,我可以而且应该使用类,这只是我想要了解的一个测试.在此先感谢您的帮助

c++ struct

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

使用继承重载=运算符

嘿,我试图了解如何重载运算符=当存在没有成功的继承.代码示例:

class Person 
{
    private:
            char* m_name;
            char* m_lastName;
    ..... 
    public:
            virtual Person& operator=(const Person& other);
};
/********************/
cpp implementation
/********************/
#include "Person.h"
Person& Person:: operator=(const Person& other)
{
     if(this == &other)
         return *this;
     delete[] m_name;
     delete[] m_lastName;
     if (other.m_name!=NULL)
     {
         m_name = new char[strlen (other.m_name)+1];
         strcpy(m_name,other.m_name);
     }
     if (other.m_lastName!=NULL)
     {
         m_lastName = new char[strlen (other.m_lastName)+1];
         strcpy(m_lastName,other.m_lastName);
     }
     return (*this);
}
Run Code Online (Sandbox Code Playgroud)

现在让我们说学生从Person继承应该如何实现=运算符我认为应该如下所示请更正我因为我可能是错的:

#include "Person.h"
class Student : public Person
{
    private:
            char* m_collageName;
    ..... 
    public:
            virtual Person& operator=(const Person& other); …
Run Code Online (Sandbox Code Playgroud)

c++ operator-overloading

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

克隆C#中的列表

可能重复:
如何在C#中克隆通用列表?

嘿,我一直在尝试克隆一个列表,到目前为止,我发现了函数addRange,但我很确定它不克隆列表中的对象,但做一个浅的副本列表我想知道如何克隆列表谢谢提前.

c# clone list

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

当鼠标移过它并之后恢复正常时,如何使标签变为粗体

我正在尝试制作一个动态更改为粗体字的标签,没有任何运气.

c# mouse winforms

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

如何在C++程序中使用Exceptions?

嘿,我试图继承异常类并创建一个名为NonExistingException的新类:我在我的h文件中编写了以下代码:

class NonExistingException : public exception
{
public:
    virtual const char* what() const throw()  {return "Exception: could not find 
     Item";}
};
Run Code Online (Sandbox Code Playgroud)

在我发送一些函数之前我的代码正在编写

try{
    func(); // func is a function inside another class
}
catch(NonExistingException& e)
{
    cout<<e.what()<<endl;
}
catch (exception& e)
{
     cout<<e.what()<<endl;
}
Run Code Online (Sandbox Code Playgroud)

在func里面,我抛出一个异常,但没有任何东西可以抓住它.在此先感谢您的帮助.

c++ exception

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