最新资讯

  • 文本编辑控件QScintilla动态库二次开发

文本编辑控件QScintilla动态库二次开发

2026-01-28 16:39:17 栏目:最新资讯 5 阅读

        使用的开源QScintilla_src-2.14.1版本32位。资源自己网上下。

        二次开发了关键字,补全,折叠,光标,任意位置换行等功能。效果图如下:

        

代码如下:

CustomLexer.h

#include "../Depends/QScintilla_src-2.14.1/src/Qsci/qscilexercustom.h"
#include "../Depends/QScintilla_src-2.14.1/src/Qsci/qsciscintilla.h"
#include "../Depends/QScintilla_src-2.14.1/src/Qsci/qscilexer.h"

class CustomLexer : public QsciLexerCustom
{
public:
    explicit CustomLexer(QObject* parent = nullptr);

    // 必须重写的核心方法
    const char* language() const override;
    QString description(int style) const override;
    void styleText(int start, int end) override;
    void fold(int& foldLevel, int style);  // 关键折叠逻辑

    // 可选重写方法(样式控制)
    QColor defaultColor(int style) const override;
    QFont defaultFont(int style) const override;

    // 关键字管理
    void setKeywords(const QStringList& kwds);
    const QStringList& keywords() const { return m_keywords; }

    QString splitLineInfo(QString str);

private:
    QStringList m_keywords;
    int m_keywordStyle;
    int m_foldStartStyle;
    int m_foldEndStyle;
    int m_Level;
};

CustomLexer.cpp

#include "CustomLexer.h"
#include 

CustomLexer::CustomLexer(QObject* parent)
    : QsciLexerCustom(parent)
{
    // 定义关键字列表(含折叠标记关键字)
    m_keywords = QStringList({ "func", "var", "return", "endfunc" });
    m_keywordStyle = 1;    // 关键字基础样式
    m_foldStartStyle = 2;  // 折叠起始样式(如 "begin")
    m_foldEndStyle = 3;    // 折叠结束样式(如 "end")
    m_Level = 1;
}

const char* CustomLexer::language() const {
    return "MyCustomLang";  // 自定义语言名称
}

QString CustomLexer::description(int style) const {
    switch (style) {
    case 0: return "Default";
    case 1: return "Keyword";
    case 2: return "String";
        // 添加更多样式描述...
    default: return "";
    }
}

QString CustomLexer::splitLineInfo(QString str)
{
    QString n_str = "";
    if (str.contains("
"))
    {
        QStringList n_list = str.split("
");
        n_str = n_list.at(0);
        return n_str;
    }
    else
        return str;
}

void CustomLexer::styleText(int start, int end)
{
    if (!editor()) return;

    //QsciStyler styler(this);
    QString text = editor()->text(start, end);
    for (int pos = 0; pos < text.length(); )
    {
        startStyling(start + pos);
        setStyling(1, 0);  // 默认样式
        pos++;
        continue;
    }
    //QString n_str = splitLineInfo(text);
    //qDebug() << "n_str:" << n_str;
    qDebug() << "styleText:" << text << ";start;" << start << ";end;" << end;
    //int n_currentPos = editor()->SendScintilla(QsciScintilla::SCI_GETCURRENTPOS);
    //int n_currentLine = editor()->SendScintilla(QsciScintilla::SCI_LINEFROMPOSITION, n_currentPos);
    //qDebug() << "styleText::n_currentLine:" << n_currentLine << ";n_currentPos:" << n_currentPos;

    // 遍历文本应用样式
    for (int pos = 0; pos < text.length(); ) {
        if (text[pos].isSpace()) {
            startStyling(start + pos);
            setStyling(1, 0);  // 默认样式
            pos++;
            continue;
        }

        // 检测关键字
        bool isKeyword = false;
        foreach(const QString & kw, m_keywords) {
            ////qDebug() <<"pos:" << pos <<";kw.length():"<< kw.length() << ";test:" << text.mid(pos, kw.length());
            if (text.mid(pos, kw.length()) == kw) {
                ////qDebug() << "gjz in........................";
                startStyling(start + pos);
                //setStyling(kw.length(), 1);  // 关键字样式
            if (kw == "func")
                {
                    int currentPos = editor()->SendScintilla(QsciScintilla::SCI_GETCURRENTPOS);
                    int currentLine = editor()->SendScintilla(QsciScintilla::SCI_LINEFROMPOSITION, currentPos);
                    //int foldLevel = editor()->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, 2);

                    ////qDebug() << "func::currentLine:" << currentLine << ";currentPos:" << currentPos;
                    ////qDebug() << "func::m_Level:" << m_Level;
                    //qDebug() << "line:" << start + pos;
                    //editor()->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, currentLine, QsciScintilla::SC_FOLDLEVELHEADERFLAG);
                    //editor()->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, currentLine, QsciScintilla::SC_FOLDLEVELBASE | QsciScintilla::SC_FOLDLEVELHEADERFLAG | m_Level);

                    setStyling(kw.length(), m_foldStartStyle);  // 标记为折叠起始
                    //////editor()->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, currentLine, QsciScintilla::SC_FOLDLEVELHEADERFLAG | m_Level);
                    //////m_Level++;

                }
                else if (kw == "endfunc")
                {
                    int currentPos = editor()->SendScintilla(QsciScintilla::SCI_GETCURRENTPOS);
                    int currentLine = editor()->SendScintilla(QsciScintilla::SCI_LINEFROMPOSITION, currentPos);
                    ////qDebug() << "endfunc::currentLine:" << currentLine << ";currentPos:" << currentPos;
                    ////qDebug() << "endfunc::m_Level:" << m_Level;

                    setStyling(kw.length(), m_foldEndStyle);  // 标记为折叠结束
                    //m_Level--;
                    //editor()->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, currentLine, m_Level);
                }
                else
                    setStyling(kw.length(), m_keywordStyle);  // 关键字样式
                pos += kw.length();
                isKeyword = true;
                break;
            }
        }
        if (!isKeyword && pos < text.length()) {
            pos++;
        }

        //if (isKeyword) continue;

        //// 检测字符串(示例:双引号包裹)
        //if (text[pos] == '"') {
        //    int endPos = text.indexOf('"', pos + 1);
        //    if (endPos == -1) endPos = text.length();
        //    startStyling(start + pos);
        //    setStyling(endPos - pos + 1, 2);  // 字符串样式
        //    pos = endPos + 1;
        //    continue;
        //}


        // 默认处理
        //startStyling(start + pos);
        //setStyling(1, 0);
        //pos++;
    }


}
QColor CustomLexer::defaultColor(int style) const {
    switch (style) {
    case 1: return Qt::blue;     // 关键字颜色
    case 2: return Qt::darkGreen; // 字符串颜色
    default: return Qt::black;   // 默认颜色
    }
}

QFont CustomLexer::defaultFont(int style) const {
    QFont font("Consolas", 10);
    if (style == 1) font.setBold(true);  // 关键字加粗
    return font;
}
void CustomLexer::setKeywords(const QStringList& kwds)
{
    m_keywords = kwds;
}

void CustomLexer::fold(int& foldLevel, int style) {
    if (style == 1) {  // 遇到 '{'
        foldLevel |= QsciScintilla::SC_FOLDLEVELHEADERFLAG;
        foldLevel++;
    }
    else if (style == 2) {  // 遇到 '}'
        foldLevel--;
    }
}

SCLWidget.h

#ifndef SCLWIDGET_H
#define SCLWIDGET_H
#include "qsciscintilla.h"
#include "qscilexercpp.h"
#include "qscilexercustom.h"
#include "qsciapis.h"

#include "CustomLexer.h"
#include "BodorPLC_global.h"

#include 
#include 
#include 
#include 


class SCLWidget : public QWidget
{
    Q_OBJECT

public:
    explicit SCLWidget(QWidget* parent = nullptr);
    bool eventFilter(QObject* obj, QEvent* ev) override;
private slots:
    void handleTextChanged();
private:
    void checkUpdateLineInfo(int curLine);
private:
    QsciScintilla* editor;
    QStringList m_keywords;//关键字
    QList foldedLines;//中间换行的下边行List留痕
    bool m_isNewLine;//是否是换行回车
    CURCURSOR m_curCursor;//换行回车光标留痕
};

#endif // SCLWIDGET_H


SCLWidget.cpp

#include "SCLWidget.h"
#include 
#include 
#include 
SCLWidget::SCLWidget(QWidget* parent)
    : QWidget(parent)
{
    m_keywords = QStringList({ "func", "var", "return", "endfunc","endvar" });
    m_isNewLine = false;
    foldedLines = {};
    m_curCursor = { 0,0 };

    QVBoxLayout* mainLayout = new QVBoxLayout(this);
    editor = new QsciScintilla(this);
    mainLayout->addWidget(editor);
    editor->installEventFilter(this);
    connect(editor, SIGNAL(textChanged()),
        this, SLOT(handleTextChanged()), Qt::QueuedConnection);
    // 配置编辑器基础属性
    editor->setMarginLineNumbers(1, true);  // 显示行号
    editor->setMarginWidth(1, "0000");      // 行号栏宽度
    editor->setAutoIndent(true);            // 自动缩进

    // 应用自定义词法分析器
    CustomLexer* lexer = new CustomLexer(editor);
    editor->setLexer(lexer);
    //关键字补全
    QsciAPIs* pyApis = new QsciAPIs(lexer);
    pyApis->add("func");
    pyApis->add("fuaa");
    pyApis->add("var");
    pyApis->add("varq");
    pyApis->add("return");
    pyApis->add("returnq");
    pyApis->add("endfunc");
    pyApis->add("endvar");
    pyApis->prepare();

    editor->setAutoCompletionSource(QsciScintilla::AcsAPIs);  // 仅使用 API 列表
    editor->setAutoCompletionCaseSensitivity(true);           // 区分大小写
    editor->setAutoCompletionThreshold(1);                    // 输入1个字符触发补全
    editor->setAutoCompletionFillupsEnabled(true);            // 允许补全填充

    // 启用折叠
    editor->setFolding(QsciScintilla::BoxedTreeFoldStyle);
    editor->setFoldMarginColors(Qt::lightGray, Qt::white);
    // 设置折叠边栏(通常为第2边栏)
    editor->setMarginWidth(2, 16);  // 宽度建议16-20像素
    editor->setMarginType(2, QsciScintilla::SymbolMargin);
    editor->setMarginSensitivity(2, true);  // 允许点击交互
    // 定义折叠展开(+)和折叠(-)的符号
    editor->markerDefine(QsciScintilla::RightTriangle, QsciScintilla::SC_MARKNUM_FOLDEROPEN);  // 展开状态
    editor->markerDefine(QsciScintilla::Minus, QsciScintilla::SC_MARKNUM_FOLDER);             // 折叠状态

    // 将编辑器设为中心部件
    //setCentralWidget(editor);
    //resize(800, 600);
}

void SCLWidget::handleTextChanged()
{
    qDebug() << "handleTextChanged in.................................................";
    //QString n_str = splitLineInfo(text);
    //qDebug() << "n_str:" << n_str;
    //qDebug() << "styleText:" << text<<";start;"<< start << ";end;" << end;
    //获知当前行
    int n_currentPos = editor->SendScintilla(QsciScintilla::SCI_GETCURRENTPOS);
    int n_currentLine = editor->SendScintilla(QsciScintilla::SCI_LINEFROMPOSITION, n_currentPos);
    qDebug() << "styleText::n_currentLine:" << n_currentLine << ";n_currentPos:" << n_currentPos;

    // 获取行文本
    int start = editor->SendScintilla(QsciScintilla::SCI_POSITIONFROMLINE, n_currentLine);
    int end = editor->SendScintilla(QsciScintilla::SCI_GETLINEENDPOSITION, n_currentLine);
    QString n_str = editor->text(start, end);
    qDebug() << "handleTextChanged::str:" << n_str;

    //获取折叠层级
    int foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine);
    int levelNum = foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
    qDebug() << "foldLevel:" << foldLevel;
    qDebug() << "levelNum:" << levelNum;
    for (int line = 0; line < editor->lines(); ++line) {
        int aa_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, line);
        int aa_levelNum = aa_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
        qDebug() << "line:" << line << ";aa_foldLevel:" << aa_foldLevel << ";levelNum:" << aa_levelNum;
    }
    
    //新增行重新更新下面行折叠层级
    //折叠分级逻辑
    if (m_isNewLine)//换行回车
    {
        m_isNewLine = false;
        //新增行更新折叠层级
        if (m_curCursor.col == 0)//行首
        {
            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine - 1, 1024 + levelNum - 1);
        }
        else if (m_curCursor.col == m_curCursor.len)//行尾
        {
            int n_foldLevel_1 = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine - 1);
            int n_levelNum_1 = n_foldLevel_1 & QsciScintilla::SC_FOLDLEVELNUMBERMASK;
            if (n_foldLevel_1 > 8192)
                editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, 1024 + n_levelNum_1);
            else if (n_foldLevel_1 < 1024)
                editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, 1024 + n_levelNum_1 - 1);
            else
                editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, n_foldLevel_1);
        }
        else//行中
        {
            int n_foldLevel_2 = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine - 1);
            int n_levelNum_2 = n_foldLevel_2 & QsciScintilla::SC_FOLDLEVELNUMBERMASK;
            if (n_foldLevel_2 > 8192 || n_foldLevel_2 < 1024)
            {
                //两个都要检查
                if (n_foldLevel_2 > 8192)
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine - 1, 1024 + n_levelNum_2 - 1);
                else
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine - 1, 1024 + n_levelNum_2);
                checkUpdateLineInfo(n_currentLine - 1);
                int n_foldLevel_3 = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine - 1);
                int n_levelNum_3 = n_foldLevel_3 & QsciScintilla::SC_FOLDLEVELNUMBERMASK;
                if (n_foldLevel_3 > 8192)
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, 1024 + n_levelNum_3);
                else if (n_foldLevel_3 < 1024)
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, 1024 + n_levelNum_3 - 1);
                else
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, n_foldLevel_3);
                checkUpdateLineInfo(n_currentLine);
            }
            else
            {
                //检查第二个就行了
                editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, n_foldLevel_2);
                checkUpdateLineInfo(n_currentLine);
            }
        }

        /*if (foldLevel > 8192)
            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine + 1, 1024 + levelNum);
        else if (foldLevel < 1024)
            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine + 1, 1024 + levelNum - 1);
        else
            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine + 1, foldLevel);*/

            //新增行重新更新下面行折叠层级
        for (int i = n_currentLine + 2; i < editor->lines(); i++)
        {
            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, i, foldedLines[i - 1]);
        }
    }
    else {
        for (int pos = 0; pos < n_str.length(); ) {
            if (n_str[pos].isSpace())
            {
                pos++;
                continue;
            }
            foreach(const QString & kw, m_keywords) {
                if (n_str.mid(pos, kw.length()) == kw) {
                    if (kw == "func")
                    {
                        int func_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine);
                        int func_levelNum = func_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
                        qDebug() << "func_foldLevel1:" << func_foldLevel;
                        qDebug() << "func_levelNum1:" << func_levelNum;
                        int n_level = func_levelNum;

                        if (func_foldLevel < 8192)
                        {
                            if (func_foldLevel >= 1024)
                                n_level = func_foldLevel - 1024 + 1;
                            else
                                n_level = func_foldLevel;
                            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, QsciScintilla::SC_FOLDLEVELHEADERFLAG | n_level);
                            /*editor->insertAt("
", n_currentLine, 4);
                            editor->insertAt("endfunc", n_currentLine+1,0);
                            editor->setCursorPosition(n_currentLine+1, 7);
                            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine+1, n_level);*/
                            qDebug() << "gggggggg:" << editor->lines();
                        }
                        else
                        {
                            editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, QsciScintilla::SC_FOLDLEVELHEADERFLAG | n_level);
                        }

                        qDebug() << "func:n_level:" << n_level;
                        func_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine);
                        func_levelNum = func_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
                        qDebug() << "func_foldLevel2:" << func_foldLevel;
                        qDebug() << "func_levelNum2:" << func_levelNum;
                    }
                    else if (kw == "endfunc")
                    {
                        int func_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine);
                        int func_levelNum = func_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
                        qDebug() << "endfunc_foldLevel1:" << func_foldLevel;
                        qDebug() << "endfunc_levelNum1:" << func_levelNum;
                        int n_level = levelNum;
                        if (foldLevel >= 1024)
                        {
                            if (foldLevel < 8192)
                            {
                                if (foldLevel == 1024)
                                {
                                    n_level = 0;
                                    //提示结构错误
                                }
                                else
                                    n_level = foldLevel - 1024;
                            }
                        }
                        editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, n_currentLine, n_level);
                        int end_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine);
                        int end_levelNum = end_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
                        qDebug() << "end_foldLevel:" << end_foldLevel;
                        qDebug() << "end_levelNum:" << end_levelNum;
                    }
                    pos += kw.length();
                    break;
                }
            }
            if (pos < n_str.length()) {
                pos++;
            }
        }
    }
}

bool SCLWidget::eventFilter(QObject* obj, QEvent* ev)
{
    if (obj == editor && ev->type() == QEvent::KeyPress)
    {
        QKeyEvent* keyEvent = static_cast(ev);
        if (keyEvent->key() == Qt::Key_Return) {
            if (editor->SendScintilla(QsciScintilla::SCI_AUTOCACTIVE))//补全
            {
                qDebug() << "bu quan de hui che";
                int n_currentPos = editor->SendScintilla(QsciScintilla::SCI_GETCURRENTPOS);
                int n_currentLine = editor->SendScintilla(QsciScintilla::SCI_LINEFROMPOSITION, n_currentPos);
                int func_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, n_currentLine);
                int func_levelNum = func_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值

                qDebug() << "huiche_n_currentLine:" << n_currentLine;
                qDebug() << "huiche_foldLevel:" << func_foldLevel;
                qDebug() << "huiche_levelNum:" << func_levelNum;
            }
            else//换行
            {
                qDebug() << "huan hang de hui cheeeeeeeeeeeeeeeeeeeeeeeeeeee";
                int n_currentPos = editor->SendScintilla(QsciScintilla::SCI_GETCURRENTPOS);
                int n_currentLine = editor->SendScintilla(QsciScintilla::SCI_LINEFROMPOSITION, n_currentPos);
                qDebug() << "n_currentLine:" << n_currentLine << "test:" << editor->text(n_currentLine);
                QString n_str = editor->text(n_currentLine);
                while (n_str.endsWith("
") || n_str.endsWith("
")) {
                    n_str.chop(1);  // 逐个移除末尾的
或

                }
                m_curCursor.len = n_str.size();

                editor->getCursorPosition(&m_curCursor.row, &m_curCursor.col);
                qDebug() << "m_curCursor.row:" << m_curCursor.row << ";m_curCursor.col:" << m_curCursor.col << ";m_curCursor.len:" << m_curCursor.len;

                foldedLines.clear();
                for (int line = 0; line < editor->lines(); ++line) {
                    int func_foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, line);
                    int func_levelNum = func_foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
                    qDebug() << "line:" << line << ";foldLevel:" << func_foldLevel << ";levelNum:" << func_levelNum;
                    foldedLines.append(func_foldLevel);
                }
                m_isNewLine = true;

            }
        }
    }
    return false;
}

//当前行
void SCLWidget::checkUpdateLineInfo(int curLine)
{
    // 获取行文本
    int start = editor->SendScintilla(QsciScintilla::SCI_POSITIONFROMLINE, curLine);
    int end = editor->SendScintilla(QsciScintilla::SCI_GETLINEENDPOSITION, curLine);
    QString n_str = editor->text(start, end);
    //获取折叠层级
    int foldLevel = editor->SendScintilla(QsciScintilla::SCI_GETFOLDLEVEL, curLine);
    int levelNum = foldLevel & QsciScintilla::SC_FOLDLEVELNUMBERMASK; // 提取层级数值
    for (int pos = 0; pos < n_str.length(); ) {
        if (n_str[pos].isSpace())
        {
            pos++;
            continue;
        }

        foreach(const QString & kw, m_keywords) {
            if (n_str.mid(pos, kw.length()) == kw) {
                if (kw == "func")
                {
                    int n_level = levelNum;
                    if (foldLevel < 8192)
                    {
                        if (foldLevel >= 1024)
                            n_level = foldLevel - 1024 + 1;
                        else
                            n_level = foldLevel;
                    }
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, curLine, QsciScintilla::SC_FOLDLEVELHEADERFLAG | n_level);
                }
                else if (kw == "endfunc")
                {
                    int n_level = levelNum;
                    if (foldLevel >= 1024)
                    {
                        if (foldLevel < 8192)
                        {
                            if (foldLevel == 1024)
                            {
                                n_level = 0;
                                //提示结构错误
                            }
                            else
                                n_level = foldLevel - 1024;
                        }
                        /*else
                            n_level = */

                    }
                    editor->SendScintilla(QsciScintilla::SCI_SETFOLDLEVEL, curLine, n_level);
                }
                pos += kw.length();
                break;
            }
        }
        if (pos < n_str.length()) {
            pos++;
        }
    }
}
                   
          

本文地址:https://www.yitenyun.com/469.html

搜索文章

Tags

#服务器 #python #pip #conda #ios面试 #ios弱网 #断点续传 #ios开发 #objective-c #ios #ios缓存 #人工智能 #微信 #远程工作 #Trae #IDE #AI 原生集成开发环境 #Trae AI #kubernetes #笔记 #平面 #容器 #linux #学习方法 香港站群服务器 多IP服务器 香港站群 站群服务器 #运维 #学习 #分阶段策略 #模型协议 #银河麒麟高级服务器操作系统安装 #银河麒麟高级服务器V11配置 #设置基础软件仓库时出错 #银河麒高级服务器系统的实操教程 #生产级部署银河麒麟服务系统教程 #Linux系统的快速上手教程 #科技 #深度学习 #自然语言处理 #神经网络 #harmonyos #docker #鸿蒙PC #hadoop #hbase #hive #zookeeper #spark #kafka #flink #华为云 #部署上线 #动静分离 #Nginx #新人首发 #fastapi #html #css #tcp/ip #网络 #qt #C++ #github #git #PyTorch #模型训练 #星图GPU #物联网 #websocket #进程控制 #大数据 #职场和发展 #程序员创富 #gemini #gemini国内访问 #gemini api #gemini中转搭建 #Cloudflare #经验分享 #安卓 #langchain #数据库 #MobaXterm #ubuntu #ARM服务器 # GLM-4.6V # 多模态推理 #语言模型 #大模型 #ai #ai大模型 #agent #低代码 #爬虫 #音视频 #开源 #kylin #arm #word #umeditor粘贴word #ueditor粘贴word #ueditor复制word #ueditor上传word图片 #Conda # 私有索引 # 包管理 #飞牛nas #fnos #unity #c# #游戏引擎 #数信院生信服务器 #Rstudio #生信入门 #生信云服务器 #内网穿透 #cpolar #ci/cd #jenkins #gitlab #ide #区块链 #测试用例 #生活 #aws #云计算 #node.js #flutter #RTP over RTSP #RTP over TCP #RTSP服务器 #RTP #TCP发送RTP #开发语言 #云原生 #iventoy #VmWare #OpenEuler #ssh #儿童书籍 #儿童诗歌 #童话故事 #经典好书 #儿童文学 #好书推荐 #经典文学作品 #矩阵 #线性代数 #AI运算 #向量 #vscode #mobaxterm #计算机视觉 #fabric #postgresql #AI编程 #缓存 #后端 #前端 #nginx #serverless #diskinfo # TensorFlow # 磁盘健康 #Harbor #centos #svn #c++ #算法 #牛客周赛 #分布式 #华为 #iBMC #UltraISO #sql #AIGC #agi #android #腾讯云 #java #javascript #架构 #mcu #自动化 #ansible #vue上传解决方案 #vue断点续传 #vue分片上传下载 #vue分块上传下载 #http #项目 #高并发 #java-ee #文心一言 #AI智能体 #多个客户端访问 #IO多路复用 #回显服务器 #TCP相关API #openHiTLS #TLCP #DTLCP #密码学 #商用密码算法 #FTP服务器 #Reactor #windows #flask #企业开发 #ERP #项目实践 #.NET开发 #C#编程 #编程与数学 #驱动开发 #pytorch #PyCharm # 远程调试 # YOLOFuse #php #microsoft #jar #Dell #PowerEdge620 #内存 #硬盘 #RAID5 #mysql #信息与通信 #开源软件 #程序人生 #科研 #博士 #pycharm #网络协议 #鸿蒙 #jmeter #功能测试 #软件测试 #自动化测试 #安全 #dify #spring boot #内存治理 #django #vue.js #es安装 #DeepSeek #服务器繁忙 #AI #udp #c语言 #散列表 #哈希算法 #数据结构 #leetcode #uni-app #小程序 #notepad++ #风控模型 #决策盲区 #数学建模 #2026年美赛C题代码 #2026年美赛 #LLM #阿里云 #spring cloud #spring #json #计算机网络 #golang #redis #jvm #mmap #nio #mvp #个人开发 #设计模式 #游戏 #蓝桥杯 #京东云 #性能优化 #深度优先 #DFS #ecmascript #elementui #rocketmq #Ansible # 自动化部署 # VibeThinker #Ubuntu服务器 #硬盘扩容 #命令行操作 #VMware #web #webdav #课程设计 #vim #gcc #yum #vllm #Streamlit #Qwen #本地部署 #AI聊天机器人 #我的世界 #prometheus #毕业设计 #企业微信 #jetty #web安全 #酒店客房管理系统 #毕设 #论文 #阻塞队列 #生产者消费者模型 #服务器崩坏原因 #钉钉 #机器人 #数据仓库 #MCP #MCP服务器 #鸭科夫 #逃离鸭科夫 #鸭科夫联机 #鸭科夫异地联机 #开服 #Ascend #MindIE #adb #select #opencv #超算服务器 #算力 #高性能计算 #仿真分析工作站 #ModelEngine #rabbitmq #protobuf #DisM++ # 系统维护 #gpu算力 #语音识别 #设备驱动 #芯片资料 #网卡 #守护进程 #复用 #screen #大模型学习 #AI大模型 #大模型教程 #大模型入门 #全能视频处理软件 #视频裁剪工具 #视频合并工具 #视频压缩工具 #视频字幕提取 #视频处理工具 #机器学习 #程序员 #Android #Bluedroid #ffmpeg #智能手机 #Linux #TCP #线程 #线程池 #everything #mcp #mcp server #AI实战 #todesk #wsl #L2C #勒让德到切比雪夫 #网络安全 #单片机 #stm32 #嵌入式硬件 #AI论文写作工具 #学术论文创作 #论文效率提升 #MBA论文写作 #需求分析 #scala #测试工具 #压力测试 #数据集 #信息可视化 #claude code #codex #code cli #ccusage #tdengine #时序数据库 #制造 #涛思数据 #asp.net #面试 #1024程序员节 #claude #LoRA # RTX 3090 # lora-scripts #react.js #FL Studio #FLStudio #FL Studio2025 #FL Studio2026 #FL Studio25 #FL Studio26 #水果软件 #ddos #fiddler #AI产品经理 #大模型开发 #PowerBI #企业 #svm #amdgpu #kfd #ROCm #数据挖掘 #googlecloud #重构 #银河麒麟 #系统升级 #信创 #国产化 #银河麒麟操作系统 #openssh #华为交换机 #信创终端 #里氏替换原则 #arm开发 #Modbus-TCP #幼儿园 #园长 #幼教 #数模美赛 #matlab #振镜 #振镜焊接 #azure #编辑器 #金融 #金融投资Agent #Agent #ida #sizeof和strlen区别 #sizeof #strlen #计算数据类型字节数 #计算字符串长度 #正则 #正则表达式 #研发管理 #禅道 #禅道云端部署 #中间件 #n8n #ssl #DS随心转 #RAID #RAID技术 #磁盘 #存储 #oracle #系统架构 #AI写作 #STUN # TURN # NAT穿透 #iphone #unity3d #服务器框架 #Fantasy #elasticsearch #智能路由器 #transformer #架构师 #软考 #系统架构师 #流量监控 #凤希AI伴侣 #Canal #MC #生信 #几何学 #拓扑学 #链表 #链表的销毁 #链表的排序 #链表倒置 #判断链表是否有环 #java大文件上传 #java大文件秒传 #java大文件上传下载 #java文件传输解决方案 #journalctl #LobeChat #vLLM #GPU加速 #selenium #RAG #全链路优化 #实战教程 #openresty #lua #wordpress #雨云 #测试流程 #金融项目实战 #P2P #webrtc #chatgpt #电脑 #SSH反向隧道 # Miniconda # Jupyter远程访问 #grafana #SSH Agent Forwarding # PyTorch # 容器化 #边缘计算 #homelab #Lattepanda #Jellyfin #Plex #Emby #Kodi #流程图 #论文阅读 #论文笔记 #Coze工作流 #AI Agent指挥官 #多智能体系统 #asp.net大文件上传 #asp.net大文件上传下载 #asp.net大文件上传源码 #ASP.NET断点续传 #asp.net上传文件夹 #autosar #私有化部署 #VS Code调试配置 #vue3 #天地图 #403 Forbidden #天地图403错误 #服务器403问题 #天地图API #部署报错 #SSH # ProxyJump # 跳板机 #ping通服务器 #读不了内网数据库 #bug菌问答团队 #数码相机 #epoll #高级IO #debian #OBC #ms-swift # 一锤定音 # 大模型微调 #deepseek #机器视觉 #6D位姿 #risc-v #cpp #智能一卡通 #门禁一卡通 #梯控一卡通 #电梯一卡通 #消费一卡通 #一卡通 #考勤一卡通 #进程 #SSH公钥认证 # 安全加固 #求职招聘 #Qwen3-14B # 大模型部署 # 私有化AI #screen 命令 #嵌入式 #macos #vp9 #大语言模型 #长文本处理 #GLM-4 #Triton推理 #支付 #远程桌面 #远程控制 #fpga开发 #LVDS #高速ADC #DDR # GLM-TTS # 数据安全 #ssm #bash #llama #ceph #nas #whisper #ai编程 #状态模式 #YOLO #ui #分类 #版本控制 #Git入门 #开发工具 #代码托管 #搜索引擎 #若依 #quartz #框架 #目标检测 #蓝耘智算 #abtest #C语言 #个人博客 #ONLYOFFICE #MCP 服务器 #视频去字幕 #apache #tomcat #流量运营 #用户运营 #迁移重构 #数据安全 #漏洞 #代码迁移 #可信计算技术 #前端框架 #嵌入式编译 #ccache #distcc #零代码平台 #AI开发 #Miniconda #Docker #esp32教程 #cursor #模版 #函数 #类 #笔试 #WEB #spine #双指针 #操作系统 #进程创建与终止 #shell #LabVIEW知识 #LabVIEW程序 #labview #LabVIEW功能 #laravel #scrapy #微信小程序 #ollama #llm #RustDesk #IndexTTS 2.0 #本地化部署 #信号处理 #tcpdump #embedding #CPU利用率 #visual studio code #流媒体 #NAS #飞牛NAS #监控 #NVR #EasyNVR #车辆排放 #SA-PEKS # 关键词猜测攻击 # 盲签名 # 限速机制 #数组 #目标跟踪 #树莓派4b安装系统 #我的世界服务器搭建 #minecraft #ESXi #paddleocr #社科数据 #数据分析 #数据统计 #经管数据 #Spring AI #STDIO协议 #Streamable-HTTP #McpTool注解 #服务器能力 #Shiro #反序列化漏洞 #CVE-2016-4437 #pencil #pencil.dev #设计 #RAGFlow #DeepSeek-R1 #sqlite #Playbook #AI服务器 #simulink #运营 #React安全 #漏洞分析 #Next.js #Triton # CUDA #产品经理 #团队开发 #墨刀 #figma #海外服务器安装宝塔面板 #负载均衡 #SSH保活 #远程开发 #智慧校园解决方案 #智慧校园一体化平台 #智慧校园选型 #智慧校园采购 #智慧校园软件 #智慧校园专项资金 #智慧校园定制开发 #CFD #LangGraph #模型上下文协议 #MultiServerMCPC #load_mcp_tools #load_mcp_prompt #AB包 #openlayers #bmap #tile #server #vue #简单数论 #埃氏筛法 #openEuler #Hadoop #客户端 #DIY机器人工房 #vuejs #HeyGem # 远程访问 # 服务器IP配置 #MS #Materials #eBPF #.net #yolov12 #研究生life #nacos #银河麒麟aarch64 #uvicorn #uvloop #asgi #event #zabbix #信令服务器 #Janus #MediaSoup #其他 #TensorRT # Triton # 推理优化 #Jetty # CosyVoice3 # 嵌入式服务器 #Chat平台 #ARM架构 #建筑缺陷 #红外 #X11转发 #推荐算法 #tensorflow #SMTP # 内容安全 # Qwen3Guard #sqlserver #改行学it #创业创新 #log #北京百思可瑞教育 #百思可瑞教育 #北京百思教育 #串口服务器 #Modbus #MOXA #集成测试 #微服务 #GATT服务器 #蓝牙低功耗 #渗透测试 #服务器解析漏洞 #零售 #UOS #海光K100 #统信 #NFC #智能公交 #服务器计费 #FP-增长 #SSH免密登录 #CANN #wpf #硬件 #Fun-ASR # 语音识别 # WebUI #esb接口 #走处理类报异常 #上下文工程 #langgraph #意图识别 #CUDA #交互 #log4j #Proxmox VE #虚拟化 #intellij-idea #idea #intellij idea #数据采集 #浏览器指纹 #ESP32 #传感器 #Python #MicroPython #3d #部署 #GPU服务器 #8U #硬件架构 #RK3576 #瑞芯微 #硬件设计 #昇腾300I DUO #NPU #pdf #edge #迭代器模式 #观察者模式 #vnstat #twitter #机器人学习 #c++20 #fs7TF #CosyVoice3 # IP配置 # 0.0.0.0 #jupyter #cosmic #安全架构 #线性回归 #H5 #跨域 #发布上线后跨域报错 #请求接口跨域问题解决 #跨域请求代理配置 #request浏览器跨域 #运维开发 #opc ua #opc #AutoDL #mybatis #处理器 #黑群晖 #虚拟机 #无U盘 #纯小白 #贴图 #材质 #设计师 #游戏美术 #UDP套接字编程 #UDP协议 #网络测试 #指针 #anaconda #虚拟环境 #SSH跳板机 # Python3.11 #东方仙盟 #游戏机 #JumpServer #堡垒机 #API限流 # 频率限制 # 令牌桶算法 #UDP的API使用 #lvs #ip #Host #SSRF #分布式数据库 #集中式数据库 #业务需求 #选型误 #Gunicorn #WSGI #Flask #并发模型 #容器化 #性能调优 #teamviewer #蓝湖 #Axure原型发布 #AI赋能盾构隧道巡检 #开启基建安全新篇章 #以注意力为核心 #YOLOv12 #AI隧道盾构场景 #盾构管壁缺陷病害异常检测预警 #隧道病害缺陷检测 #chat #微PE # GLM # 服务连通性 #openclaw #ambari #单元测试 #门禁 #梯控 #智能梯控 #音乐分类 #音频分析 #ViT模型 #Gradio应用 #Socket网络编程 #鼠大侠网络验证系统源码 #turn #黑客技术 #网安应急响应 #计算机 # 目标检测 #数据恢复 #视频恢复 #视频修复 #RAID5恢复 #流媒体服务器恢复 #游戏私服 #云服务器 #muduo库 #uv #uvx #uv pip #npx #Ruff #pytest #milvus #springboot #知识库 #910B #昇腾 #web server #请求处理流程 #Kuikly #openharmony #框架搭建 #SRS #直播 #Anaconda配置云虚拟环境 #MQTT协议 #C# # REST API # GLM-4.6V-Flash-WEB #vivado license #CVE-2025-68143 #CVE-2025-68144 #CVE-2025-68145 #html5 #maven #weston #x11 #x11显示服务器 #chrome #RSO #机器人操作系统 #Fluentd #Sonic #日志采集 #glibc #restful #ajax #winscp #智能体 #Claude #flume #政务 #集成学习 #https #IO #powerbi #Clawdbot #个人助理 #数字员工 #文生视频 #CogVideoX #AI部署 # 双因素认证 #UDP #rustdesk #p2p #pandas #matplotlib #连接数据库报错 #聚类 #OPCUA #环境搭建 #OSS #firefox #安恒明御堡垒机 #windterm #rust #源码 #闲置物品交易系统 #YOLOFuse # Base64编码 # 多模态检测 #IPv6 #DNS #自由表达演说平台 #演说 #硬件工程 #bootstrap #青少年编程 #SPA #单页应用 #web3.py #系统安全 #逻辑回归 #ipmitool #BMC # 黑屏模式 # TTS服务器 #C # 硬件配置 #算力一体机 #ai算力服务器 #Karalon #AI Test #Rust #prompt #YOLOv8 # Docker镜像 ##程序员和算法的浪漫 #文件IO #输入输出流 #麒麟OS #SMP(软件制作平台) #EOM(企业经营模型) #应用系统 #国产开源制品管理工具 #Hadess #一文上手 #swagger #IndexTTS2 # 阿里云安骑士 # 木马查杀 #自动驾驶 #mamba #项目申报系统 #项目申报管理 #项目申报 #企业项目申报 #JAVA #Java #tornado #mariadb #CLI #JavaScript #langgraph.json #CMake #Make #C/C++ #reactjs #web3 #策略模式 # 高并发部署 #vps #Anything-LLM #IDC服务器 #raid #raid阵列 #贪心算法 #人脸识别 #人脸核身 #活体检测 #身份认证与人脸对比 #微信公众号 #1panel #vmware #电气工程 #PLC # 水冷服务器 # 风冷服务器 #VoxCPM-1.5-TTS # 云端GPU # PyCharm宕机 #webpack #database #学习笔记 #jdk #eclipse #servlet #学术写作辅助 #论文创作效率提升 #AI写论文实测 #5G #汇编 #AI生成 # outputs目录 # 自动化 #翻译 #开源工具 #typescript #npm #rdp #能源 #dubbo #esp32 arduino #FASTMCP #ComfyUI # 推理服务器 #libosinfo #Dify #鲲鹏 # 显卡驱动备份 #联机教程 #局域网联机 #局域网联机教程 #局域网游戏 #模拟退火算法 #国产PLM #瑞华丽PLM #瑞华丽 #PLM #产品运营 #内存接口 # 澜起科技 # 服务器主板 #windows11 #系统修复 #文件传输 #电脑文件传输 #电脑传输文件 #电脑怎么传输文件到另一台电脑 #电脑传输文件到另一台电脑 #说话人验证 #声纹识别 #CAM++ #性能 #优化 #RAM #结构与算法 #mongodb #Windows 更新 #HBA卡 #RAID卡 #TLS协议 #HTTPS #漏洞修复 #运维安全 #PTP_1588 #gPTP #unix #扩展屏应用开发 #android runtime #Windows #RXT4090显卡 #RTX4090 #深度学习服务器 #硬件选型 #gitea # IndexTTS 2.0 # 远程运维 #群晖 #音乐 #IntelliJ IDEA #Spring Boot #neo4j #NoSQL #SQL #idm #网站 #截图工具 #批量处理图片 #图片格式转换 #图片裁剪 #echarts #考研 #软件工程 #万悟 #联通元景 #镜像 #结构体 #TCP服务器 #开发实战 #ThingsBoard MCP #可撤销IBE #服务器辅助 #私钥更新 #安全性证明 #双线性Diffie-Hellman #树莓派 #N8N #Android16 #音频性能实战 #音频进阶 #海外短剧 #海外短剧app开发 #海外短剧系统开发 #短剧APP #短剧APP开发 #短剧系统开发 #海外短剧项目 #kmeans #健身房预约系统 #健身房管理系统 #健身管理系统 #gateway #Comate #遛狗 #SSE # AI翻译机 # 实时翻译 #cnn #clickhouse #代理 #平板 #交通物流 #智能硬件 #CTF #r-tree #聊天小程序 #arm64 #计组 #数电 #导航网 #浏览器自动化 #python #无人机 #Deepoc #具身模型 #开发板 #未来 #DAG #VibeVoice # 语音合成 #Xshell #Finalshell #生物信息学 #组学 #outlook #错误代码2603 #无网络连接 #2603 #注入漏洞 #React #Next #CVE-2025-55182 #RSC #nvidia #密码 #safari #b树 #统信UOS #服务器操作系统 #win10 #qemu # ControlMaster #vertx #vert.x #vertx4 #runOnContext #ngrok #视觉检测 #visual studio #memory mcp #Cursor #网路编程 #百万并发 #docker-compose #HarmonyOS #Nacos #gRPC #注册中心 #Tokio #异步编程 #系统编程 #Pin #http服务器 #win11 #IFix # 远程连接 #iot #智能家居 #Buck #NVIDIA #交错并联 #DGX #Spring #galeweather.cn #高精度天气预报数据 #光伏功率预测 #风电功率预测 #高精度气象 #攻防演练 #Java web #红队 #Llama-Factory # 树莓派 # ARM架构 #语音合成 #c #npu #memcache #大剑师 #nodejs面试题 #ServBay #C2000 #TI #实时控制MCU #AI服务器电源 #智慧城市 #TTS私有化 # IndexTTS # 音色克隆 #实时音视频 #业界资讯 #ranger #MySQL8.0 #GB28181 #SIP信令 #SpringBoot #视频监控 #WT-2026-0001 #QVD-2026-4572 #smartermail #勒索病毒 #勒索软件 #加密算法 #.bixi勒索病毒 #数据加密 #论文复现 #测评 # ARM服务器 # 大模型推理 #存储维护 #screen命令 #知识 #JT/T808 #车联网 #车载终端 #模拟器 #仿真器 #开发测试 # Connection refused #智能体来了 #智能体对传统行业冲击 #行业转型 #AI赋能 #系统管理 #服务 #mapreduce #excel #Apple AI #Apple 人工智能 #FoundationModel #Summarize #SwiftUI #源代码管理 #elk #hibernate #管道Pipe #system V # 高并发 #appche #AITechLab #cpp-python #CUDA版本 #YOLO26 #muduo #TcpServer #accept #高并发服务器 #SAP #ebs #metaerp #oracle ebs #AI技术 #react native #SSH跳转 #ARM64 # DDColor # ComfyUI #节日 #Ubuntu #ESP32编译服务器 #Ping #DNS域名解析 #YOLO11 #go #postman # GPU集群 #服务器开启 TLS v1.2 #IISCrypto 使用教程 #TLS 协议配置 #IIS 安全设置 #服务器运维工具 #连锁药店 #连锁店 #单例模式 #AI-native #dba #LangFlow # 轻量化镜像 # 边缘计算 #国产化OS #taro #汽车 #网络编程 #Socket #套接字 #I/O多路复用 #字节序 # keep-alive #量子计算 #WinSCP 下载安装教程 #SFTP #FTP工具 #服务器文件传输 #计算几何 #斜率 #方向归一化 #叉积 #samba #copilot # 批量管理 #ASR #SenseVoice #硬盘克隆 #DiskGenius #面向对象 #媒体 #opc模拟服务器 #ArkUI #ArkTS #鸿蒙开发 #clamav #服务器线程 # SSL通信 # 动态结构体 #报表制作 #职场 #数据可视化 #用数据讲故事 #手机h5网页浏览器 #安卓app #苹果ios APP #手机电脑开启摄像头并排查 #语音生成 #TTS #主板 #总体设计 #电源树 #框图 #证书 #蓝牙 #LE Audio #BAP #命令模式 #JNI #CPU #CCE #Dify-LLM #Flexus # 数字人系统 # 远程部署 #宝塔面板部署RustDesk #RustDesk远程控制手机 #手机远程控制 #图像处理 #yolo #可再生能源 #绿色算力 #风电 #puppeteer #KMS #slmgr #ipv6 #dlms #dlms协议 #逻辑设备 #逻辑设置间权限 #duckdb #TRO #TRO侵权 #TRO和解 #高品质会员管理系统 #收银系统 #同城配送 #最好用的电商系统 #最好用的系统 #推荐的前十系统 #JAVA PHP 小程序 #运维工具 #POC #问答 #交付 #动态规划 #xlwings #Excel #Discord机器人 #云部署 #程序那些事 #STDIO传输 #SSE传输 #WebMVC #WebFlux #移动端h5网页 #调用浏览器摄像头并拍照 #开启摄像头权限 #拍照后查看与上传服务器端 #摄像头黑屏打不开问题 #nfs #iscsi #服务器IO模型 #非阻塞轮询模型 #多任务并发模型 #异步信号模型 #多路复用模型 #Minecraft #Minecraft服务器 #PaperMC #我的世界服务器 #cesium #可视化 #前端开发 #领域驱动 #文件管理 #文件服务器 #kong #Kong Audio #Kong Audio3 #KongAudio3 #空音3 #空音 #中国民乐 #范式 #寄存器 #ET模式 #非阻塞 #ue4 #ue5 #DedicatedServer #独立服务器 #专用服务器 # 大模型 # 模型训练 #H3C #scanf #printf #getchar #putchar #cin #cout #图像识别 #高考 #企业级存储 #网络设备 #多模态 #微调 #超参 #LLamafactory #长文本理解 #glm-4 #推理部署 #Aluminium #Google #Smokeping #语义搜索 #嵌入模型 #Qwen3 #AI推理 #pve #就业 #排序算法 #排序 #wps #Linux多线程 #电商 #Java程序员 #Java面试 #后端开发 #Spring源码 #因果学习 #zotero #WebDAV #同步失败 #代理模式 #工具集 #tcp/ip #网络 #大模型应用 #API调用 #PyInstaller打包运行 #服务端部署 #Langchain-Chatchat # 国产化服务器 # 信创 #软件 #本地生活 #电商系统 #商城 #欧拉 #CSDN #aiohttp #asyncio #异步 #麒麟 #ICPC #.netcore # 自动化运维 #儿童AI #图像生成 #pjsip # 模型微调 #游戏程序 #paddlepaddle #VPS #搭建 #土地承包延包 #领码SPARK #aPaaS+iPaaS #数字化转型 #智能审核 #档案数字化 #农产品物流管理 #物流管理系统 #农产品物流系统 #农产品物流 #实体经济 #商业模式 #软件开发 #数智红包 #商业变革 #创业干货 #xss #net core #kestrel #web-server #asp.net-core #VMware Workstation16 #Zabbix #HistoryServer #Spark #YARN #jobhistory #ZooKeeper #ZooKeeper面试题 #面试宝典 #深入解析 #大模型部署 #mindie #大模型推理 #n8n解惑 #ShaderGraph #图形 #VSCode # SSH #Go并发 #高并发架构 #Goroutine #系统设计 #Tracker 服务器 #响应最快 #torrent 下载 #2026年 #Aria2 可用 #迅雷可用 #BT工具通用 #EMC存储 #NetApp存储 #2026AI元年 #年度趋势 #区间dp #二进制枚举 #图论 #云开发 #eureka #多线程 #性能调优策略 #双锁实现细节 #动态分配节点内存 #markdown #建站 #AI智能棋盘 #Rock Pi S #广播 #组播 #并发服务器 #x86_64 #数字人系统 #技术美术 #游戏策划 #用户体验 #BoringSSL #企业存储 #RustFS #对象存储 #高可用 #三维 #3D #三维重建 #大学生 #大作业 #asp.net上传大文件 #rtsp #转发 #编程 #c++高并发 #Termux #Samba #SSH别名 #插入排序 #信创国产化 #达梦数据库 #CVE-2025-61686 #路径遍历高危漏洞 #http头信息 #uip #银河麒麟服务器系统 #测试覆盖率 #可用性测试 # 代理转发 #GPU ##租显卡 #TFTP #进程等待 #wait #waitpid #NSP #下一状态预测 #aigc # 服务器IP # 端口7860 # HiChatBox # 离线AI #SMARC #ARM #性能测试 #LoadRunner #全文检索 #web服务器 # 公钥认证 # 智能运维 # 性能瓶颈分析 # GPU租赁 # 自建服务器 #空间计算 #原型模式 # 云服务器 #devops #数字孪生 #三维可视化 # 远程开发 # Qwen3Guard-Gen-8B #工厂模式 #VMWare Tool #WinDbg #Windows调试 #内存转储分析 #MinIO服务器启动与配置详解 #随机森林 #经济学 # 服务器IP访问 # 端口映射 #H5网页 #网页白屏 #H5页面空白 #资源加载问题 #打包部署后网页打不开 #HBuilderX #A2A #GenAI #磁盘配额 #存储管理 #形考作业 #国家开放大学 #系统运维 #自动化运维 #插件 #cascadeur #DHCP #C++ UA Server #SDK #跨平台开发 #AI视频创作系统 #AI视频创作 #AI创作系统 #AI视频生成 #AI工具 #AI创作工具 #心理健康服务平台 #心理健康系统 #心理服务平台 #心理健康小程序 #AI+ #coze #AI入门 #Node.js #漏洞检测 #CVE-2025-27210 #SSH复用 #PyTorch 特性 #动态计算图 #张量(Tensor) #自动求导Autograd #GPU 加速 #生态系统与社区支持 #与其他框架的对比 #lucene #nodejs #云服务器选购 #Saas #Python3.11 #Spire.Office #隐私合规 #网络安全保险 #法律风险 #风险管理 #mssql #算力建设 #HarmonyOS APP #静脉曲张 #腿部健康 #clawdbot #远程访问 #远程办公 #飞网 #安全高效 #配置简单 #快递盒检测检测系统 #具身智能 #SSH密钥 #练习 #基础练习 #循环 #九九乘法表 #计算机实现 #dynadot #域名 #ETL管道 #向量存储 #数据预处理 #DocumentReader #银河麒麟部署 #银河麒麟部署文档 #银河麒麟linux #银河麒麟linux部署教程 #声源定位 #MUSIC #windbg分析蓝屏教程 #le audio #低功耗音频 #通信 #连接 #FaceFusion # Token调度 # 显存优化 #WRF #WRFDA #nmodbus4类库使用教程 #公共MQTT服务器 #smtp #smtp服务器 #PHP #嵌入式开发 # DIY主机 # 交叉编译 #网络配置实战 #Web/FTP 服务访问 #计算机网络实验 #外网访问内网服务器 #Cisco 路由器配置 #静态端口映射 #网络运维 #ROS #RPA #影刀RPA #AI办公 #0day漏洞 #DDoS攻击 #漏洞排查 #懒汉式 #恶汉式 #视觉理解 #Moondream2 #多模态AI #AI 推理 #NV #路由器 #跳槽 # OTA升级 # 黄山派 #内网 # IndexTTS2 #CS336 #Assignment #Experiments #TinyStories #Ablation #ansys #ansys问题解决办法 # 网络延迟 #远程软件 #CA证书 #代理服务器 #编程助手 #webgl #星际航行 #agentic bi #视频 #ARMv8 #内存模型 #内存屏障 #雨云服务器 #教程 #MCSM面板 #娱乐 #敏捷流程 #Keycloak #Quarkus #AI编程需求分析 #工作 #超时设置 #客户端/服务器 #挖矿 #Linux病毒 #sql注入 #学术生涯规划 #CCF目录 #基金申请 #职称评定 #论文发表 #科研评价 #顶会顶刊 # 服务器配置 # GPU #canvas层级太高 #canvas遮挡问题 #盖住其他元素 #苹果ios手机 #安卓手机 #调整画布层级 #测速 #iperf #iperf3 #Gateway #认证服务器集成详解 #ftp #sftp #uniapp #合法域名校验出错 #服务器域名配置不生效 #request域名配置 #已经配置好了但还是报错 #uniapp微信小程序 #分子动力学 #化工仿真 #SEO优化 #华为od #华为机试 #远程连接 #cpu #工程设计 #预混 #扩散 #燃烧知识 #层流 #湍流 #游戏服务器断线 # 批量部署 #基础语法 #标识符 #常量与变量 #数据类型 #运算符与表达式 #地理 #遥感 # 键鼠锁定 #mtgsig #美团医药 #美团医药mtgsig #美团医药mtgsig1.2 #Archcraft #后端框架 #RWK35xx #语音流 #实时传输 #node #Linly-Talker # 数字人 # 服务器稳定性 #外卖配送 #榛樿鍒嗙被 #传统行业 #pxe #参数估计 #矩估计 #概率论 #实在Agent #MCP服务器注解 #异步支持 #方法筛选 #声明式编程 #自动筛选机制 #CNAS #CMA #程序文件 #人脸活体检测 #live-pusher #动作引导 #张嘴眨眼摇头 #苹果ios安卓完美兼容 #麦克风权限 #访问麦克风并录制音频 #麦克风录制音频后在线播放 #用户拒绝访问麦克风权限怎么办 #uniapp 安卓 苹果ios #将音频保存本地或上传服务器 #gnu # child_process #glances #sentinel #电子电气架构 #系统工程与系统架构的内涵 #Routine #AI应用编程 #r语言 #强化学习 #策略梯度 #REINFORCE #蒙特卡洛 #百度 #ueditor导入word #scikit-learn #L6 #L10 #L9 #安全威胁分析 #仙盟创梦IDE #GLM-4.6V-Flash-WEB # AI视觉 # 本地部署 #网络攻击模型 #pyqt #AI Agent #开发者工具 #EN4FE #TURN # WebRTC #LED #设备树 #GPIO #composer #symfony #java-zookeeper #vrrp #脑裂 #keepalived主备 #高可用主备都持有VIP #coffeescript #软件需求 #工业级串口服务器 #串口转以太网 #串口设备联网通讯模块 #串口服务器选型 #入侵 #日志排查 #AI大模型应用开发 #人大金仓 #Kingbase #小艺 #搜索 #Spring AOP #多进程 #python技巧 #个性化推荐 #BERT模型 #gpt #工程实践 #租显卡 #训练推理 #API #轻量化 #低配服务器 #国产操作系统 #V11 #kylinos #KMS激活 #poll #numpy #Tetrazine-Acid #1380500-92-4 #Syslog #系统日志 #日志分析 #日志监控 #Autodl私有云 #深度服务器配置 #高仿永硕E盘的个人网盘系统源码 #人脸识别sdk #视频编解码 #挖漏洞 #攻击溯源 #stl #IIS Crypto #blender #warp #递归 #线性dp #支持向量机 #Prometheus #音诺ai翻译机 #AI翻译机 # Ampere Altra Max #sklearn #sglang #文本生成 #CPU推理 #Puppet # TTS #计算机毕业设计 #程序定制 #毕设代做 #课设 #Moltbot #交换机 #三层交换机 #高斯溅射 #xml #统信操作系统 #个人电脑 #KMS 激活 #MC群组服务器 #人形机器人 #人机交互 # 服务器迁移 # 回滚方案 #CS2 #debian13 #DDD #tdd #easyui #电梯 #电梯运力 #电梯门禁 #gpu #nvcc #cuda #漏洞挖掘 #域名注册 #新媒体运营 #网站建设 #国外域名 #k8s #idc #模块 # 权限修复 #ICE #题解 #图 #dijkstra #迪杰斯特拉 #bond #服务器链路聚合 #网卡绑定 # 鲲鹏 #数据报系统 #SQL注入主机 # GPU服务器 # tmux #Coturn #程序开发 #程序设计 #智能制造 #供应链管理 #工业工程 #库存管理 #温湿度监控 #WhatsApp通知 #IoT #MySQL #文件上传漏洞 #Kylin-Server #服务器安装 #短剧 #短剧小程序 #短剧系统 #微剧 #nosql #RK3588 #RK3588J #评估板 #核心板 #戴尔服务器 #戴尔730 #装系统 #junit #bug #I/O模型 #并发 #水平触发、边缘触发 #多路复用 #Moltbook #数据访问 #vncdotool #链接VNC服务器 #如何隐藏光标 #Cpolar #国庆假期 #服务器告警 #dreamweaver #wireshark #网络安全大赛 #OpenManage #FHSS #resnet50 #分类识别训练 #实时检测 #卷积神经网络 #智能电视 #AI工具集成 #容器化部署 #分布式架构 #FRP #Matrox MIL #二次开发 #CMC #AI电商客服 #spring ai #oauth2 #rtmp # 高温监控 #防火墙 # 局域网访问 # 批量处理 #gerrit # 环境迁移 #基金 #股票 #xshell #host key #rsync # 数据同步 #余行补位 #意义对谈 #余行论 #领导者定义计划 #ossinsight #AE #claudeCode #content7 #rag #odoo # 串口服务器 # NPort5630 #cocos2d #图形渲染 #Python办公自动化 #Python办公 #YOLO识别 #YOLO环境搭建Windows #YOLO环境搭建Ubuntu #小智 #OpenHarmony #期刊 #SCI #session # ms-swift #PN 结 #超算中心 #PBS #lsf #反向代理 #boltbot #adobe #语义检索 #向量嵌入 #数据迁移 #系统安装 #铁路桥梁 #DIC技术 #箱梁试验 #裂纹监测 #四点弯曲 #MinIO #express #cherry studio #gmssh #宝塔 #Exchange #free #vmstat #sar #阿里云RDS #边缘AI # Kontron # SMARC-sAMX8 #okhttp #计算机外设 #remote-ssh #健康医疗 #AI应用 #bigtop #hdp #hue #kerberos #Beidou #北斗 #SSR #Qwen3-VL # 服务状态监控 # 视觉语言模型 #信息安全 #信息收集 #职场发展 #隐函数 #常微分方程 #偏微分方程 #线性微分方程 #线性方程组 #非线性方程组 #复变函数 #docker安装seata #UDP服务器 #recvfrom函数 #生产服务器问题查询 #日志过滤 #VMware创建虚拟机 #远程更新 #缓存更新 #多指令适配 #物料关联计划 #Ward #思爱普 #SAP S/4HANA #ABAP #NetWeaver #claude-code #高精度农业气象 # AI部署 #材料工程 #日志模块 #m3u8 #HLS #移动端H5网页 #APP安卓苹果ios #监控画面 直播视频流 #决策树 #DooTask #WAN2.2 #防毒面罩 #防尘面罩 #4U8卡 AI 服务器 ##AI 服务器选型指南 #GPU 互联 #GPU算力 #dash #UEFI #BIOS #Legacy BIOS #开关电源 #热敏电阻 #PTC热敏电阻 #身体实验室 #健康认知重构 #系统思维 #微行动 #NEAT效应 #亚健康自救 #ICT人 #云计算运维 #效率神器 #办公技巧 #自动化工具 #Windows技巧 #打工人必备 #旅游 #GB/T4857 #GB/T4857.17 #GB/T4857测试 #晶振 #西门子 #汇川 #Blazor #运维 #夏天云 #夏天云数据 #hdfs #华为od机试 #华为od机考 #华为od最新上机考试题库 #华为OD题库 #华为OD机试双机位C卷 #od机考题库 #2025年 #AI教程 #自动化巡检 #istio #服务发现 #jquery #fork函数 #进程创建 #进程终止 #moltbot #JADX-AI 插件 #starrocks #运动 #OpenAI #故障 #tekton #新浪微博 #传媒 #DuckDB #协议 #二值化 #Canny边缘检测 #轮廓检测 #透视变换 #Arduino BLDC #核辐射区域探测机器人 #esp32 #mosquito #百度文库 #爱企查 #旋转验证码 #验证码识别