Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これはコードです
QWebView* webView=new QWebView(this); webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); webView->load(QUrl(newsUrl));
いずれかのケースを削除した後、一部のメモリが削除できない場合があります
これを使用してコンストラクターでオブジェクトの親を設定すると
( QWebView* webView=new QWebView(this); )
次に、delete を直接呼び出さないでください。親として提供したクラスが破棄されると、メモリが解放されます。
delete を使用する場合は、次のようにオブジェクトを作成するだけです。
QWebView* webView=new QWebView();