CN115857905A - Code conversion method and device for graphical programming, electronic equipment and storage medium - Google Patents

Code conversion method and device for graphical programming, electronic equipment and storage medium Download PDF

Info

Publication number
CN115857905A
CN115857905A CN202211672742.XA CN202211672742A CN115857905A CN 115857905 A CN115857905 A CN 115857905A CN 202211672742 A CN202211672742 A CN 202211672742A CN 115857905 A CN115857905 A CN 115857905A
Authority
CN
China
Prior art keywords
code
code text
list
text
historical
Prior art date
Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
Pending
Application number
CN202211672742.XA
Other languages
Chinese (zh)
Inventor
林辉
Current Assignee (The listed assignees may be inaccurate. Google has not performed a legal analysis and makes no representation or warranty as to the accuracy of the list.)
Ubtech Robotics Corp
Original Assignee
Ubtech Robotics Corp
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Ubtech Robotics Corp filed Critical Ubtech Robotics Corp
Priority to CN202211672742.XA priority Critical patent/CN115857905A/en
Publication of CN115857905A publication Critical patent/CN115857905A/en
Pending legal-status Critical Current

Links

Images

Landscapes

  • Debugging And Monitoring (AREA)

Abstract

The embodiment of the invention discloses a code conversion method, a device, electronic equipment and a storage medium for graphical programming, wherein the method comprises the following steps: acquiring a building block to be converted; carrying out program conversion on the building blocks to obtain a first code text; comparing the first code text with historical code texts, and screening to obtain a second code text, wherein the second code text is a part of code texts in the first code text; and displaying the first code text except the second code text in a default color in a preset working area, and displaying the second code text in a target color. The invention can effectively distinguish new codes and old codes by distinctively displaying the building blocks different from the historical code texts to convert the code texts, and improves the readability of the code texts and the accuracy of graphical programming.

Description

Code conversion method and device for graphical programming, electronic equipment and storage medium
Technical Field
The present invention relates to the field of graphical programming technologies, and in particular, to a code conversion method and apparatus for graphical programming, an electronic device, and a storage medium.
Background
In many graphical programming applications like scratch, block, all include the process of converting building block programs into code programs after graphical building block splicing programming.
However, converting a graphical building block program into a code program is to convert all building blocks in the whole working area into code text data at one time, if a code segment converted from one building block is very long and discontinuous, the converted code text data will be scattered and distributed, and because the text styles of the code texts converted from the graphical building blocks are the same, a user cannot distinguish new codes from old codes. At this time, due to poor readability of the code text converted by the graphical building block, it is not beneficial for the user to learn programming through the graphical programming application, and the graphical programming application cannot achieve the effect of reducing the programming learning threshold.
Therefore, a transcoding solution that can improve the readability of the user and facilitate the user to learn the programming through the graphical programming application is needed.
Disclosure of Invention
In order to solve the above technical problem, an embodiment of the present application provides a code conversion method and apparatus for graphical programming, an electronic device, and a storage medium, and the specific scheme is as follows:
in a first aspect, an embodiment of the present application provides a transcoding method for graphical programming, where the method includes:
acquiring a building block to be converted;
carrying out program conversion on the building blocks to obtain a first code text;
comparing the first code text with historical code texts, and screening to obtain a second code text, wherein the second code text is a part of code texts in the first code text;
and displaying the first code text except the second code text in a default color in a preset working area, and displaying the second code text in a target color.
According to a specific implementation manner of the embodiment of the present application, before the "comparing the first code text with the historical code text", the method further includes:
detecting whether a preset cache comprises the historical code text or not;
if the historical code text is included, extracting the historical code text, and skipping to execute the step of comparing the first code text with the historical code text;
and if the historical code text is not included, storing all the first code texts into the preset cache, and displaying all the first code texts in the preset working area according to target colors.
According to a specific implementation manner of the embodiment of the present application, the "comparing the first code text with the historical code text, and filtering to obtain the second code text" includes:
converting each line code of the first code text into a first list element, and generating a first list by combining all the first list elements;
converting each line of codes of the historical code text into second list elements, and combining all the second list elements to generate a second list;
comparing each first list element in the second list, and screening out target list elements different from each second list element;
and combining all the target list elements to obtain the second code text.
According to a specific implementation manner of the embodiment of the present application, the target list elements include a newly added list element and a modified list element, and the "comparing each first list element in the second list and screening out the target list elements different from each second list element" includes:
and comparing each first list element in the second list, and screening newly-added list elements completely different from each second list element and modified list elements partially different from each second list element.
According to a specific implementation manner of the embodiment of the present application, the second code text includes an added code text and a modified code text, and the "displaying the second code text according to a target color" includes:
and displaying the newly added code text according to a first target color, and displaying the modified code text according to a second target color.
In a second aspect, an embodiment of the present application provides a graphically programmed transcoding apparatus, including:
the acquisition module is used for acquiring the building blocks to be converted;
the conversion module is used for carrying out program conversion on the building blocks to obtain a first code text;
the comparison module is used for comparing the first code text with historical code texts and screening to obtain a second code text, wherein the second code text is a part of the code text in the first code text;
and the display module is used for displaying the first code text except the second code text in a preset working area according to default colors and displaying the second code text according to target colors.
According to a specific implementation manner of the embodiment of the present application, the apparatus further includes:
the detection module is used for detecting whether the historical code text is included in a preset cache or not;
the first execution module is used for extracting the historical code text and skipping to the comparison module if the historical code text is included;
and the second execution module is used for storing all the first code texts into the preset cache if the historical code texts are not included, and displaying all the first code texts in the preset working area according to the target color.
According to a specific implementation manner of the embodiment of the present application, the comparing module is specifically configured to convert each line of codes of the first code text into a first list element, and generate a first list by combining all first list elements; converting each line code of the historical code text into a second list element, and generating a second list by combining all the second list elements; comparing each first list element in the second list, and screening out target list elements different from each second list element; and combining all the target list elements to obtain the second code text.
In a third aspect, an embodiment of the present application provides an electronic device, where the electronic device includes a processor and a memory, where the memory stores a computer program, and the computer program, when running on the processor, executes a code conversion method for graphical programming according to any one of the embodiments of the first aspect and the first aspect.
In a fourth aspect, an embodiment of the present application provides a computer-readable storage medium, where a computer program is stored in the computer-readable storage medium, and when the computer program is executed on a processor, the computer program performs a transcoding method of graphical programming according to any one of the embodiments of the first aspect and the first aspect.
The embodiment of the application provides a code conversion method, a device, electronic equipment and a storage medium for graphical programming, wherein the method comprises the following steps: acquiring a building block to be converted; carrying out program conversion on the building blocks to obtain a first code text; comparing the first code text with historical code texts, and screening to obtain a second code text, wherein the second code text is a part of code texts in the first code text; and displaying the first code text except the second code text in a default color in a preset working area, and displaying the second code text in a target color. The invention can effectively distinguish new codes and old codes by distinctively displaying the building blocks different from the historical code texts to convert the code texts, and improves the readability of the code texts and the accuracy of graphical programming.
Drawings
In order to more clearly illustrate the technical solution of the present invention, the drawings required to be used in the embodiments will be briefly described below, and it should be understood that the following drawings only illustrate some embodiments of the present invention, and therefore should not be considered as limiting the scope of the present invention. Like components are numbered similarly in the various figures.
FIG. 1 is a flowchart illustrating a method of a code conversion method for graphical programming according to an embodiment of the present disclosure;
FIG. 2 is a schematic diagram illustrating an application scenario of a transcoding method for graphical programming according to an embodiment of the present application;
fig. 3 shows a device module diagram of a graphically programmed transcoding device according to an embodiment of the present application.
Detailed Description
The technical solutions in the embodiments of the present invention will be clearly and completely described below with reference to the drawings in the embodiments of the present invention, and it is obvious that the described embodiments are only a part of the embodiments of the present invention, and not all of the embodiments.
The components of embodiments of the present invention generally described and illustrated in the figures herein may be arranged and designed in a wide variety of different configurations. Thus, the following detailed description of the embodiments of the present invention, as presented in the figures, is not intended to limit the scope of the invention, as claimed, but is merely representative of selected embodiments of the invention. All other embodiments, which can be derived by a person skilled in the art from the embodiments of the present invention without making any creative effort, shall fall within the protection scope of the present invention.
Hereinafter, the terms "including", "having", and their derivatives, which may be used in various embodiments of the present invention, are only intended to indicate specific features, numbers, steps, operations, elements, components, or combinations of the foregoing, and should not be construed as first excluding the existence of, or adding to, one or more other features, numbers, steps, operations, elements, components, or combinations of the foregoing.
Furthermore, the terms "first," "second," "third," and the like are used solely to distinguish one from another and are not to be construed as indicating or implying relative importance.
Unless otherwise defined, all terms (including technical and scientific terms) used herein have the same meaning as commonly understood by one of ordinary skill in the art to which various embodiments of the present invention belong. The terms (such as those defined in commonly used dictionaries) should be interpreted as having a meaning that is consistent with their contextual meaning in the relevant art and will not be interpreted in an idealized or overly formal sense unless expressly so defined herein in various embodiments of the present invention.
Referring to fig. 1, a schematic method flow diagram of a transcoding method for graphical programming provided in an embodiment of the present application is shown, where as shown in fig. 1, the method includes:
s101, obtaining building blocks to be converted;
specifically, the code conversion method for graphical programming provided by this embodiment may be applied to any software application that uses building blocks for graphical programming, where the building blocks are building block programs formed based on a preset graphics encapsulation method and a preset graphics rendering method, and the building blocks are associated with corresponding code programs.
In the specific implementation process, the number of the building blocks is at least 1, the number of the building blocks is not limited in the embodiment, and the building blocks can be set in a self-adaptive manner according to the programming requirements in the actual application scene.
Specifically, before the building block is obtained for the first time, the variable data in the text display area needs to be initialized, so that the variable data is not affected by the historical programming record data when the graphical programming is performed.
Step S102, carrying out program conversion on the building blocks to obtain a first code text;
in a specific embodiment, the building blocks are subjected to program conversion processing through built-in programs of various graphical programming applications, which is not limited herein.
The first code text is a display text of a complete code program associated with the building block.
According to a specific implementation manner of the embodiment of the present application, before the "comparing the first code text with the historical code text", the method further includes:
detecting whether a preset cache comprises the historical code text or not;
if the historical code text is included, extracting the historical code text, and skipping to execute the step of comparing the first code text with the historical code text;
and if the historical code text is not included, storing all the first code texts into the preset cache, and displaying all the first code texts in the preset working area according to the target color.
In particular embodiments, historical code text that has converted the building block into code text is stored by a cache, database, or register.
The preset cache can be a cache of the code display interface and is used for storing code text data of the code display interface.
After extracting the first code text, determining whether to execute step S103 by detecting whether a history code text is included in a preset buffer.
Specifically, if the preset cache does not include any historical code text, the first code text converted by the current building block is stored in the preset cache, and the description line of the first code text is changed, so that the first code text is converted into the historical code text.
And simultaneously, displaying all the first code texts converted by the current building block in a target color in a code display interface, and ending the code conversion process.
It should be noted that when the next building block is to be converted, the color of the current first code text is converted to a default color to indicate that the current first code text is to be converted to the historical code text.
Specifically, the target color may be set in a user-defined manner according to a use condition of the user, which is not limited herein. In this embodiment, the target color may be green text as shown in fig. 2.
In practical application, the code text displayed based on the target color may also be highlight code text.
Step S103, comparing the first code text with a historical code text, and screening to obtain a second code text, wherein the second code text is a part of the code text in the first code text;
in a specific embodiment, if the preset cache comprises the historical code text, the comparison and screening processing is carried out on the first code text converted by the building block and the historical code text so as to screen out the newly added code text and the modified code text.
Specifically, the second code text is an added code text and a modified code text.
In the actual application process, the deleted code text is not displayed in the code display area, so that when the second code text is screened, the deleted part of the code does not need to be screened.
In a particular embodiment, the number of texts of the first code text is greater than or equal to the number of texts of the second code text.
According to a specific implementation manner of the embodiment of the present application, the "comparing the first code text with the historical code text, and filtering to obtain the second code text" includes:
converting each line code of the first code text into a first list element, and generating a first list by combining all the first list elements;
converting each line code of the historical code text into a second list element, and generating a second list by combining all the second list elements;
comparing each first list element in the second list, and screening out target list elements different from each second list element;
and combining all the target list elements to obtain the second code text.
Specifically, the programming language type of the code text in this embodiment may be adaptively adjusted according to the requirements of the actual application scenario and the type of the graphical programming application, which is not limited in this embodiment.
For example, if the embodiment uses a graphical programming application of javascript programming language, the first code text and the historical code text may be compared using diffArrays method of diff library.
In the practical application process, after the historical code text is taken out from the preset cache, the first code text and the historical code text are respectively converted into a first list and a second list, then the code list meeting the screening requirement is screened out by comparing the first list and the second list, and all target list elements in the final code list are synthesized, so that the second code text can be obtained.
Specifically, a first list element in the first list represents a line of first code text, and a second list element in the second list represents a line of historical code text.
The first list and the second list may also be displayed in an array format, which is not limited in this embodiment.
Each line of codes of the code text is converted into a list or array processing mode, so that traversal and comparison of each line of codes can be conveniently carried out subsequently, and the screening processing efficiency can be effectively improved.
According to a specific implementation manner of the embodiment of the present application, the target list elements include a newly added list element and a modified list element, and the "comparing each first list element in the second list and screening out the target list elements different from each second list element" includes:
and comparing each first list element in the second list, and screening newly-added list elements completely different from each second list element and modified list elements partially different from each second list element.
In the actual application process, the code texts to be screened are the newly added code texts and the modified code texts, so that the target list elements are set as newly added list elements and modified list elements.
In a specific embodiment, the deletion code element may also be screened out, and corresponds to the deletion code text, which is not limited in this embodiment.
After the corresponding target list elements are screened out, the line numbers of the corresponding line code texts are modified to mark the categories of the target list elements, so that the subsequent code display areas can distinguish the second code texts by identifying the line numbers.
And step S104, displaying the first code text except the second code text according to default colors in a preset working area, and displaying the second code text according to target colors.
In the specific implementation process, after the corresponding second code text is identified, the preset cache is updated, and all the code texts are displayed according to the distinction between the first code text and the second code text in the current code conversion process.
The preset working area is a display area of a code text, and as shown in fig. 2, after a building block of infrared receiving and printing data (RAW) is subjected to code conversion, a building block code highlighted in green can be obtained.
In the actual application process, the specific colors of the default color and the target color may be configured according to the actual application scenario, which is not limited herein.
According to a specific implementation manner of the embodiment of the present application, the second code text includes an added code text and a modified code text, and the "displaying the second code text according to a target color" includes:
and displaying the newly added code text according to a first target color, and displaying the modified code text according to a second target color.
In a specific embodiment, the new code text and the modified code text may be further highlighted in two different colors.
And after the preset cache is updated, rendering the second code text through a preset UI component module in the graphical programming application so as to realize highlight display of different colors.
The embodiment provides a code conversion method for graphical programming, which is characterized in that a list is divided to identify a newly added code text and a modified code text in a code text converted by a current building block, and historical code texts are distinguished in a code display area by highlight display of different colors, so that a modified part can be visually displayed for a user, the user can clearly define programmed nodes in the programming process, and the programming accuracy of the graphical programming application is effectively improved. In addition, the position of the current building block conversion code text is distinguished in real time, so that the programming efficiency of technicians can be effectively improved. The graphical programming application is generally used for reducing the threshold of user learning programming, and the readability of the code text can be effectively increased and the effect of the user learning programming can be improved through the code conversion method of the embodiment.
Referring to fig. 3, a schematic device module diagram of a graphically programmed transcoding device 300 provided in an embodiment of the present application is shown, where as shown in fig. 3, the graphically programmed transcoding device 300 provided in the embodiment of the present application includes:
an obtaining module 301, configured to obtain a building block to be converted;
a conversion module 302, configured to perform program conversion on the building blocks to obtain a first code text;
a comparing module 303, configured to compare the first code text with a historical code text, and filter to obtain a second code text, where the second code text is a part of the first code text;
the display module 304 is configured to display the first code text except the second code text in a default color in a preset work area, and display the second code text in a target color.
According to a specific implementation manner of the embodiment of the present application, the apparatus further includes:
the detection module is used for detecting whether the historical code text is included in a preset cache or not;
the first execution module is used for extracting the historical code text and skipping to the comparison module if the historical code text is included;
and the second execution module is used for storing all the first code texts into the preset cache if the historical code texts are not included, and displaying all the first code texts in the preset working area according to target colors.
According to a specific implementation manner of the embodiment of the present application, the comparing module 303 is specifically configured to convert each line code of the first code text into a first list element, and generate a first list by combining all the first list elements; converting each line code of the historical code text into a second list element, and generating a second list by combining all the second list elements; comparing each first list element in the second list, and screening out target list elements which are different from each second list element; and combining all the target list elements to obtain the second code text.
In addition, an electronic device is further provided in an embodiment of the present application, where the electronic device includes a processor and a memory, where the memory stores a computer program, and the computer program, when running on the processor, executes the code conversion method of the graphical programming in the foregoing method embodiment.
The present application further provides a computer-readable storage medium, in which a computer program is stored, and when the computer program runs on a processor, the computer program executes the code conversion method of the graphical programming in the foregoing method embodiments.
In addition, for specific implementation processes of the code conversion device for graphical programming, the electronic device, and the computer-readable storage medium mentioned in the foregoing embodiments, reference may be made to the specific implementation processes of the foregoing method embodiments, and details are not repeated here.
In the embodiments provided in the present application, it should be understood that the disclosed apparatus and method can be implemented in other ways. The apparatus embodiments described above are merely illustrative and, for example, the flowchart and block diagrams in the figures illustrate the architecture, functionality, and operation of possible implementations of apparatus, methods and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of code, which comprises one or more executable instructions for implementing the specified logical function(s). It should also be noted that, in alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts, or combinations of special purpose hardware and computer instructions.
In addition, each functional module or unit in each embodiment of the present invention may be integrated together to form an independent part, or each module may exist separately, or two or more modules may be integrated to form an independent part.
The functions, if implemented in the form of software functional modules and sold or used as a stand-alone product, may be stored in a computer readable storage medium. Based on such understanding, the technical solution of the present invention or a part of the technical solution that contributes to the prior art in essence can be embodied in the form of a software product, which is stored in a storage medium and includes instructions for causing a computer device (which may be a smart phone, a personal computer, a server, or a network device, etc.) to execute all or part of the steps of the method according to the embodiments of the present invention. And the aforementioned storage medium includes: a U-disk, a removable hard disk, a Read-Only Memory (ROM), a Random Access Memory (RAM), a magnetic disk, or an optical disk, and various media capable of storing program codes.
The above description is only for the specific embodiments of the present invention, but the scope of the present invention is not limited thereto, and any person skilled in the art can easily conceive of the changes or substitutions within the technical scope of the present invention, and all the changes or substitutions should be covered within the scope of the present invention.

Claims (10)

1. A method of transcoding graphical programming, the method comprising:
acquiring a building block to be converted;
carrying out program conversion on the building blocks to obtain a first code text;
comparing the first code text with historical code texts, and screening to obtain a second code text, wherein the second code text is a part of code texts in the first code text;
and displaying the first code text except the second code text in a default color in a preset working area, and displaying the second code text in a target color.
2. The method of claim 1, wherein prior to the comparing the first code text to historical code text, the method further comprises:
detecting whether a preset cache comprises the historical code text or not;
if the historical code text is included, extracting the historical code text, and skipping to execute the step of comparing the first code text with the historical code text;
and if the historical code text is not included, storing all the first code texts into the preset cache, and displaying all the first code texts in the preset working area according to the target color.
3. The method of claim 1, wherein comparing the first code text with historical code text and filtering to obtain second code text comprises:
converting each line code of the first code text into a first list element, and generating a first list by combining all the first list elements;
converting each line code of the historical code text into a second list element, and generating a second list by combining all the second list elements;
comparing each first list element in the second list, and screening out target list elements which are different from each second list element;
and combining all the target list elements to obtain the second code text.
4. The method of claim 3, wherein the target list elements comprise an added list element and a modified list element, and wherein the "aligning each first list element in the second list and screening out target list elements that are different from each second list element" comprises:
and comparing each first list element in the second list, and screening newly-added list elements completely different from each second list element and modified list elements partially different from each second list element.
5. The method of claim 1, wherein the second code text comprises an added code text and a modified code text, and wherein the "displaying the second code text in a target color" comprises:
and displaying the newly added code text according to a first target color, and displaying the modified code text according to a second target color.
6. A graphically programmed transcoding apparatus, the apparatus comprising:
the acquisition module is used for acquiring the building blocks to be converted;
the conversion module is used for carrying out program conversion on the building blocks to obtain a first code text;
the comparison module is used for comparing the first code text with historical code texts and screening to obtain a second code text, wherein the second code text is a part of the code text in the first code text;
and the display module is used for displaying the first code text except the second code text in a preset working area according to default colors and displaying the second code text according to target colors.
7. The apparatus of claim 6, further comprising:
the detection module is used for detecting whether the historical code text is included in a preset cache or not;
the first execution module is used for extracting the historical code text and skipping to the comparison module if the historical code text is included;
and the second execution module is used for storing all the first code texts into the preset cache if the historical code texts are not included, and displaying all the first code texts in the preset working area according to the target color.
8. The apparatus according to claim 6, wherein the comparing module is specifically configured to transcode each line of the first code text into a first list element, and generate a first list by combining all the first list elements; converting each line code of the historical code text into a second list element, and generating a second list by combining all the second list elements; comparing each first list element in the second list, and screening out target list elements different from each second list element; and combining all the target list elements to obtain the second code text.
9. An electronic device, characterized in that it comprises a processor and a memory, said memory storing a computer program which, when run on said processor, executes the graphically programmed transcoding method of any one of claims 1 to 5.
10. A computer-readable storage medium, in which a computer program is stored which, when run on a processor, executes the method of transcoding graphically programmed as claimed in any one of claims 1 to 5.
CN202211672742.XA 2022-12-26 2022-12-26 Code conversion method and device for graphical programming, electronic equipment and storage medium Pending CN115857905A (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
CN202211672742.XA CN115857905A (en) 2022-12-26 2022-12-26 Code conversion method and device for graphical programming, electronic equipment and storage medium

Applications Claiming Priority (1)

Application Number Priority Date Filing Date Title
CN202211672742.XA CN115857905A (en) 2022-12-26 2022-12-26 Code conversion method and device for graphical programming, electronic equipment and storage medium

Publications (1)

Publication Number Publication Date
CN115857905A true CN115857905A (en) 2023-03-28

Family

ID=85654685

Family Applications (1)

Application Number Title Priority Date Filing Date
CN202211672742.XA Pending CN115857905A (en) 2022-12-26 2022-12-26 Code conversion method and device for graphical programming, electronic equipment and storage medium

Country Status (1)

Country Link
CN (1) CN115857905A (en)

Cited By (2)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116663502A (en) * 2023-06-01 2023-08-29 上海同星智能科技有限公司 Method and system for converting text codes and graphic codes for automobile development
CN117171042A (en) * 2023-08-16 2023-12-05 上海同星智能科技有限公司 Development and debugging system and method based on parameter configuration method for graphic program

Cited By (4)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
CN116663502A (en) * 2023-06-01 2023-08-29 上海同星智能科技有限公司 Method and system for converting text codes and graphic codes for automobile development
CN116663502B (en) * 2023-06-01 2023-11-28 上海同星智能科技有限公司 Method and system for converting text codes and graphic codes for automobile development
CN117171042A (en) * 2023-08-16 2023-12-05 上海同星智能科技有限公司 Development and debugging system and method based on parameter configuration method for graphic program
CN117171042B (en) * 2023-08-16 2024-03-12 上海同星智能科技有限公司 Development and debugging system and method based on parameter configuration method for graphic program

Similar Documents

Publication Publication Date Title
CN115857905A (en) Code conversion method and device for graphical programming, electronic equipment and storage medium
US8015239B2 (en) Method and system to reduce false positives within an automated software-testing environment
JP5874891B2 (en) Program test apparatus, program test method, and program
JP2005517351A (en) Message analysis apparatus and message display method
CN107622008B (en) Traversal method and device for application page
US11894021B2 (en) Data processing method and system, storage medium, and computing device
CN110704880B (en) Correlation method of engineering drawings
US20130055205A1 (en) Filtering source code analysis results
CN103109264A (en) Creating a configuration file template
CN113268243B (en) Memory prediction method and device, storage medium and electronic equipment
CN104503957A (en) Formula graph automatic generation method and device
US11314991B2 (en) Information display method, information display system, and storage medium
CN104375977A (en) Answer message processing method and device for question-answer communities
CN112711536A (en) Automatic dial testing method and system, and computer readable storage medium
US20210405827A1 (en) Display control device, display control method, and display control program
CN108255486B (en) View conversion method and device for form design and electronic equipment
CN105894242A (en) Calendar event display method and apparatus
CN116304189A (en) Image extraction method in excel file and electronic equipment
KR102262279B1 (en) Data processing for detecting outlier method and device thereof
CN107515821B (en) Control testing method and device
CN103778210A (en) Method and device for judging specific file type of file to be analyzed
US20170147987A1 (en) Method and apparatus for generating a combined calendar
CN113805861A (en) Code generation method based on machine learning, code editing system and storage medium
CN114187658A (en) Input operation identification method and equipment
CN113807058A (en) Text display method and text display device

Legal Events

Date Code Title Description
PB01 Publication
PB01 Publication
SE01 Entry into force of request for substantive examination
SE01 Entry into force of request for substantive examination