ctype

    0熱度

    1回答

    我動態地重命名按鈕,我需要根據按鈕文本執行一個功能。我有工作代碼(每個按鈕5個部分)。是否有很好的方法,使用DirectCast或CType或真正的任何其他功能的所有5個按鈕的單一功能,所以我不必有多個功能是做同樣的事情? 兩個5個按鍵的我的代碼示例: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Butto

    2熱度

    1回答

    我仍然在學VB,並遇到了一個沒有體面的教程的問題。 我已經創建了一個動態窗體,在循環的每個循環中生成一個Textbox和一個Update按鈕。 我已經宣佈了以下全局變量: Dim tbRef As Textbox WithEvents btnUpdate As Button 在循環 後來以下 Do Until counter = Maxrows counter = counter + 1

    0熱度

    1回答

    在Windows上使用Visual Studio 2017年我可以使用下面的代碼爲大寫一個u32string(至極基於char32_t): #include <locale> #include <iostream> #include <string> void toUpper(std::u32string& u32str, std::string localeStr) { st

    1熱度

    1回答

    JPEG文件的尾部包含一個複雜的結構,如下列: FFD8........................... ............................... ............FFD9 1C01 0000 .... ............................... struct definations in C file are: type

    2熱度

    1回答

    我有一些C代碼,希望字符緩衝區,看起來像這樣: char buf[ 64 ]; buf[0] = 0x01; buf[1] = 0x11; buf[2] = 0x61; buf[3] = 0x08; buf[4] = 0x01; 我想在Python中創建該緩衝區,並將指針傳遞給C代碼。我創建BUF如下, buf = create_string_

    -1熱度

    1回答

    當我的位置是空格時,如何使「while」函數停止? #include <stdio.h> #include <string.h> #include <stdlib.h> #include <ctype.h> int main() { int i,t; char array[20]; t=strlen(array); for (i=0;i<=

    0熱度

    1回答

    我在Python(通過使用C ref或VAL問題變量)以下問題 我的C代碼: #define NON_ALLOCATED 0 #define ALLOCATED 1 #define MAX_STACK 100 typedef struct myObject { int iStatus; int iSize; double pdTab; } static

    -2熱度

    2回答

    int main(){ char text[500]; int j,h,op; char b[]=" abcdefghijklmnopqrstuvwxyz"; char a[]=" ABCDEFGHIJKLMNOPQRSTUVWXYZ"; cout<<"insert text:";fflush(stdin);gets(texto); system("cls");

    0熱度

    1回答

    查看C標準庫中的大多數函數,似乎缺少const,在指定的情況下,通常會首選。 例如: 文件ctype.h/C extern int isupper(int __c) __ATTR_CONST__; extern int islower(int __c) __ATTR_CONST__; extern int isdigit(int __c) __ATTR_CONST__; 爲什麼不是這些來代

    0熱度

    1回答

    我知道你可以在Python中創建ctype對象,但我想知道是否有方法在Python環境中用C/C++封裝Python對象。更具體地說,我想要做的是用C/C++封裝一個對象,這樣我就可以引用一個指向這個對象的指針。謝謝。