delete tag

5 questions


1 answers
121 views
0
C++ Memory Release Debug Assertion

#include <iostream>#include <fstream>//http://is03.tistory.com/3 HOW to use eofusing namespace std;#define FILENAME data.txtifstream fin;class Matrix {private: int size; int numOfNonZero; ...

1 years ago

1 answers
55 views
0
You are about to delete all jpg files that have the same name in the Python directory. Please help me a little bit

import sqlite3import osimport shutilconn = sqlite3.connect('database.db')c = conn.cursor()uname = input(Enter your name: )c.execute(DELETE FROM users WHERE id=(?),(uname,)) if os.path.exists(./dataset...

1 years ago

1 answers
132 views
0
Can I delete the NULL pointer?

NULLThe pointer doesn't point at anything, so there's nothing to do with deleteIs it safe to delete?Should I check whether it is NULL or not and delete?


1 answers
62 views
0
Can I use "delete this"?

Can I write delete this; when I delete an instance of the class I created with new at the end?Write it like this. void doStuff(){ // This object is a working module // When you want to switch to anoth...


2 answers
77 views
0
When I delete the data in the middle of SQL as delete, I want to arrange the entire default key accordingly.

Hello, I'm a beginner at coding.When I deleted the value in the middle of the SQL syntax while studying the database, I thought the default key would be sorted on its own, but the default key remained...


© 2024 OneMinuteCode. All rights reserved.